diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-14 17:13:50 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-14 17:13:50 +0100 |
commit | 3f09cc139f7b932c46dc60567f307ae8064227ca (patch) | |
tree | 8cb7dd415721ecd202330385c88e222e06a9cbbc /core | |
parent | 95575a7fd1e9491f18adbf2ea92d23897de1a13f (diff) | |
download | nextcloud-server-3f09cc139f7b932c46dc60567f307ae8064227ca.tar.gz nextcloud-server-3f09cc139f7b932c46dc60567f307ae8064227ca.zip |
double speed for user menu slide
Diffstat (limited to 'core')
-rw-r--r-- | core/js/js.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/js.js b/core/js/js.js index ae23c955c38..6d5d65403fb 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -663,14 +663,14 @@ $(document).ready(function(){ } }); $('#settings #expand').click(function(event) { - $('#settings #expanddiv').slideToggle(); + $('#settings #expanddiv').slideToggle(200); event.stopPropagation(); }); $('#settings #expanddiv').click(function(event){ event.stopPropagation(); }); $(window).click(function(){//hide the settings menu when clicking outside it - $('#settings #expanddiv').slideUp(); + $('#settings #expanddiv').slideUp(200); }); // all the tipsy stuff needs to be here (in reverse order) to work |