Make sure the controls is resized after the sidebar disappeared

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2016-11-28 11:23:05 +01:00
Родитель ca7b9e5490
Коммит 65c03c26ea
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E166FD8976B3BAC8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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