summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorDer-Jan <de@r-jan.de>2014-07-25 16:19:35 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-07-30 17:23:19 +0200
commit84ea393393c64b51bc162209f740b1146a1076d5 (patch)
tree24ddd313b37fd8eaaf2f1a5bdf2c908832646043 /settings
parent62b37fbb997c0244d37953b05e333cdb2279a31a (diff)
downloadnextcloud-server-84ea393393c64b51bc162209f740b1146a1076d5.tar.gz
nextcloud-server-84ea393393c64b51bc162209f740b1146a1076d5.zip
Fixed wrong brackets in apps settings
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 3f9a9eab17a..9061b43c7be 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -398,7 +398,7 @@ $(document).ready(function(){
if(item) {
item.trigger('click');
item.addClass('active');
- $('#app-navigation').animate({scrollTop: $(item).offset().top-70}, 'slow','swing');
+ $('#app-navigation').animate({scrollTop: item.offset().top-70}, 'slow','swing');
}
}