From 7ea69f34625db361b15666a85aeefe2c3d6f1fdb Mon Sep 17 00:00:00 2001 From: Anon Ray Date: Wed, 30 Jan 2013 01:37:41 +0530 Subject: [PATCH] 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'. --- js/mouchak.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/mouchak.js b/js/mouchak.js index bf52663..39b785b 100644 --- a/js/mouchak.js +++ b/js/mouchak.js @@ -88,7 +88,7 @@ var Image = BaseType.extend({ }); var ImageView = Backbone.View.extend({ - tagName: 'image', + tagName: 'img', className: '', initialize: function() { -- 1.7.10.4