Merge "Decrease onresize debounce from 100ms to 10ms"

This commit is contained in:
jenkins-bot 2019-09-11 21:04:22 +00:00 committed by Gerrit Code Review
commit bfb8ca9724
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@
// if we haven't already bound our resize handler, bind it now
if ( !boundEvent ) {
boundEvent = true;
$( window ).on( 'resize', mw.util.debounce( 100, function () {
$( window ).on( 'resize', mw.util.debounce( 10, function () {
rAF( $.collapsibleTabs.handleResize );
} ) );
}