Commit 7ea69f34625db361b15666a85aeefe2c3d6f1fdb

Fix: wrong tag name in Image view

  tag name in Image view was 'image' instead of 'img'. Surprisingly, it
worked in Chrome (the parser autocorrects it to 'img'), while it fails in
Firefox as the tag is rendered as 'image'.
  
8888});
8989
9090var ImageView = Backbone.View.extend({
91 tagName: 'image',
91 tagName: 'img',
9292 className: '',
9393
9494 initialize: function() {