]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing javascript errors IE8 in apps management
authorThomas Mueller <thomas.mueller@tmit.eu>
Thu, 14 Feb 2013 14:47:48 +0000 (15:47 +0100)
committerThomas Mueller <thomas.mueller@tmit.eu>
Thu, 14 Feb 2013 14:47:48 +0000 (15:47 +0100)
settings/js/apps.js

index 3bc3488e4907daf6ec3a28240329a4608ccba817..8c266c66e4b118c66e886974d84a4437a40778ad 100644 (file)
@@ -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);