diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-07 21:53:53 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-07 21:53:53 +0200 |
commit | 7a9daa99d1e801620affb38bf78a7323a59ed908 (patch) | |
tree | 59079cf61712cefb37c3911a7300e3543468aed4 /settings/js/apps.js | |
parent | 775f33cc1b64bdd6ed48039fdd91331f0e91826d (diff) | |
download | nextcloud-server-7a9daa99d1e801620affb38bf78a7323a59ed908.tar.gz nextcloud-server-7a9daa99d1e801620affb38bf78a7323a59ed908.zip |
scroll the app navigation down so the newly added app is seen
Diffstat (limited to 'settings/js/apps.js')
-rw-r--r-- | settings/js/apps.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js index 66606afad80..545d005eff4 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -154,6 +154,8 @@ OC.Settings.Apps = OC.Settings.Apps || { li.append(a); // prepend the new app before the 'More apps' function $('#apps-management').before(li); + // scroll the app navigation down so the newly added app is seen + $('#navigation').animate({ scrollTop: $('#apps').height() }, 'slow'); if (!SVGSupport() && entry.icon.match(/\.svg$/i)) { $(img).addClass('svg'); replaceSVG(); |