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
This commit is contained in:
Lukas Reschke 2017-02-23 15:46:06 +01:00 committed by GitHub
commit bc2f23a0fc

View file

@ -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));
}