diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-08-05 14:23:25 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-06 08:35:56 +0200 |
commit | 9b9fbc60c0792f5e0f519865f37ef96f6d82a9f9 (patch) | |
tree | 106a9bc32e70a7aa3d9acbbae5efa7fd58eb2ce1 /settings | |
parent | a1656abb4cab9f69fc770a38fb4d68b002468391 (diff) | |
download | nextcloud-server-9b9fbc60c0792f5e0f519865f37ef96f6d82a9f9.tar.gz nextcloud-server-9b9fbc60c0792f5e0f519865f37ef96f6d82a9f9.zip |
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 9061b43c7be..877ad78cfe4 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -283,7 +283,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); |