Increase debounce time to make sure controls are resized after the sidebar disappeared

Signed-off-by: Marius Blüm <marius@lineone.io>
This commit is contained in:
Marius Blüm 2016-12-10 14:45:25 +01:00 committed by Morris Jobke
parent 5d486478d3
commit a460acb823
No known key found for this signature in database
GPG key ID: 9CE5ED29E7FCD38A

View file

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