summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-07 21:53:25 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-07 21:53:25 +0200
commit775f33cc1b64bdd6ed48039fdd91331f0e91826d (patch)
treed94fe7436a0f417159c7850f43a9099b9c553b9a /settings
parent367b248bc0ed2609d538de4f1a2e198f7d0c7d6a (diff)
downloadnextcloud-server-775f33cc1b64bdd6ed48039fdd91331f0e91826d.tar.gz
nextcloud-server-775f33cc1b64bdd6ed48039fdd91331f0e91826d.zip
prepend the new app before the 'More apps' function
Diffstat (limited to 'settings')
-rw-r--r--settings/js/apps.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index 0540d9b1c58..66606afad80 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -152,7 +152,8 @@ OC.Settings.Apps = OC.Settings.Apps || {
a.prepend(filename);
a.prepend(img);
li.append(a);
- container.append(li);
+ // prepend the new app before the 'More apps' function
+ $('#apps-management').before(li);
if (!SVGSupport() && entry.icon.match(/\.svg$/i)) {
$(img).addClass('svg');
replaceSVG();