summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-02-23 15:46:06 +0100
committerGitHub <noreply@github.com>2017-02-23 15:46:06 +0100
commitbc2f23a0fc69d7092ea5c6849b67e491f641d0ca (patch)
treee4b37fd07351f6ef73222407570da78d879530cb /core/js
parent387a77e7e09ced6bfbde32e3d92081d71fe1cfe1 (diff)
parenta460acb8230f1b2fa1aa9864bc78443efbc4fad2 (diff)
downloadnextcloud-server-bc2f23a0fc69d7092ea5c6849b67e491f641d0ca.tar.gz
nextcloud-server-bc2f23a0fc69d7092ea5c6849b67e491f641d0ca.zip
Merge pull request #2602 from nextcloud/resize-the-controls-after-the-sidebar-slided-in
Increase debounce time to make sure controls are resized after the sidebar disappeared
Diffstat (limited to 'core/js')
-rw-r--r--core/js/js.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 5ef5c72f625..5f5f540af63 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1536,7 +1536,7 @@ function initCore() {
$(window).resize(_.debounce(adjustControlsWidth, 250));
- $('body').delegate('#app-content', 'apprendered appresized', _.debounce(adjustControlsWidth, 100));
+ $('body').delegate('#app-content', 'apprendered appresized', _.debounce(adjustControlsWidth, 150));
}