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
pull/3603/head
Lukas Reschke 7 years ago committed by GitHub
commit bc2f23a0fc

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

Loading…
Cancel
Save