From c5d716effe7adec67956d7dec006d8c258c2dcbe Mon Sep 17 00:00:00 2001 From: Thomas Mueller <thomas.mueller@tmit.eu> Date: Thu, 14 Feb 2013 15:47:48 +0100 Subject: [PATCH] fixing javascript errors IE8 in apps management --- settings/js/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/js/apps.js b/settings/js/apps.js index 3bc3488e49..8c266c66e4 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -134,7 +134,7 @@ OC.Settings.Apps = OC.Settings.Apps || { if(container.children('li[data-id="'+entry.id+'"]').length === 0){ var li=$('<li></li>'); li.attr('data-id', entry.id); - var img= $('<img></img>').attr({ src: entry.icon, class:'icon'}); + var img= $('<img class="icon"/>').attr({ src: entry.icon}); var a=$('<a></a>').attr('href', entry.href); a.text(entry.name); a.prepend(img); -- GitLab