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'.
| | | | 88 | }); | 88 | }); |
---|
89 | | 89 | |
---|
90 | var ImageView = Backbone.View.extend({ | 90 | var ImageView = Backbone.View.extend({ |
---|
91 | tagName: 'image', | | tagName: 'image', |
---|
| | 91 | tagName: 'img', | 92 | className: '', | 92 | className: '', |
---|
93 | | 93 | |
---|
94 | initialize: function() { | 94 | initialize: function() { |
---|