diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-08-05 16:04:30 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-05 16:04:30 +0200 |
commit | 54030f4eefa751478b64b277614c0db89435f18f (patch) | |
tree | ca852e5f89864f1a303d8b00c97eb52046dc39d5 /settings | |
parent | 61c6864ca15018144c8cc8e189a70ece1fae7770 (diff) | |
parent | fa9659ae694dc14afd4b31a96e4ca27112437320 (diff) | |
download | nextcloud-server-54030f4eefa751478b64b277614c0db89435f18f.tar.gz nextcloud-server-54030f4eefa751478b64b277614c0db89435f18f.zip |
Merge pull request #10176 from owncloud/fix-install-icon-size
use correct app-icon class for new apps as well, fix icon size
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/apps.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js index 1077a2e7d30..e808e51e936 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -284,7 +284,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 class="icon"/>').attr({ src: entry.icon}); + var img= $('<img class="app-icon"/>').attr({ src: entry.icon}); var a=$('<a></a>').attr('href', entry.href); var filename=$('<span></span>'); filename.text(entry.name); |