summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-14 15:47:48 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-14 15:47:48 +0100
commitc5d716effe7adec67956d7dec006d8c258c2dcbe (patch)
treee3323e1db6e279abe80c597df8207f18e736b9ad /settings
parentf4c9d4c06797a5c9e2f30d20a8e13686e98dd7f9 (diff)
downloadnextcloud-server-c5d716effe7adec67956d7dec006d8c258c2dcbe.tar.gz
nextcloud-server-c5d716effe7adec67956d7dec006d8c258c2dcbe.zip
fixing javascript errors IE8 in apps management
Diffstat (limited to 'settings')
-rw-r--r--settings/js/apps.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index 3bc3488e490..8c266c66e4b 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);