summaryrefslogtreecommitdiffstats
path: root/core/js/apps.js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-03-26 12:21:40 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-03-26 12:21:40 +0100
commitf0b02873337ef2b5143224aa7f291ef935047ecf (patch)
treebd9d1116814afc457fd943f8102a160acef81315 /core/js/apps.js
parent30b745fc591adea9ca96d04d49afc657e44b31ba (diff)
downloadnextcloud-server-f0b02873337ef2b5143224aa7f291ef935047ecf.tar.gz
nextcloud-server-f0b02873337ef2b5143224aa7f291ef935047ecf.zip
adjust animations of Share, Versions and others to OC.menuSpeed
Diffstat (limited to 'core/js/apps.js')
-rw-r--r--core/js/apps.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/apps.js b/core/js/apps.js
index 21fae58985e..e9aa0fdfe8d 100644
--- a/core/js/apps.js
+++ b/core/js/apps.js
@@ -44,12 +44,12 @@
var area = $(areaSelector);
function hideArea() {
- area.slideUp(function() {
+ area.slideUp(OC.menuSpeed*4, function() {
area.trigger(new $.Event('hide'));
});
}
function showArea() {
- area.slideDown(function() {
+ area.slideDown(OC.menuSpeed*4, function() {
area.trigger(new $.Event('show'));
});
}