diff options
author | Der-Jan <de@r-jan.de> | 2014-07-25 16:19:35 +0200 |
---|---|---|
committer | Der-Jan <de@r-jan.de> | 2014-07-25 16:22:31 +0200 |
commit | c72f0e692be2e1726595f3a9bde7b99aba32fece (patch) | |
tree | 4e6b8478abfec1b37a7c46efa77b1501cb04ce90 /settings | |
parent | d28b4caa2f876de779b598b24c488733a76be861 (diff) | |
download | nextcloud-server-c72f0e692be2e1726595f3a9bde7b99aba32fece.tar.gz nextcloud-server-c72f0e692be2e1726595f3a9bde7b99aba32fece.zip |
Fixed wrong brackets in apps settings
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 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'); } } |