Merge pull request #2365 from nextcloud/resize-the-controls-after-the-sidebar-slided-in

Make sure the controls is resized after the sidebar disappeared
This commit is contained in:
Lukas Reschke 2016-11-28 12:50:37 +01:00 committed by GitHub
commit ddea6d1a90
1 changed files with 1 additions and 1 deletions

View File

@ -1502,7 +1502,7 @@ function initCore() {
$(window).resize(_.debounce(adjustControlsWidth, 250));
$('body').delegate('#app-content', 'apprendered appresized', adjustControlsWidth);
$('body').delegate('#app-content', 'apprendered appresized', _.debounce(adjustControlsWidth, 100));
}