Merge "Use mw.util.debounce() in collapsibleTabs.js"

This commit is contained in:
jenkins-bot 2019-09-11 21:01:37 +00:00 committed by Gerrit Code Review
commit a29c815a4f
2 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@
* @class jQuery.plugin.collapsibleTabs * @class jQuery.plugin.collapsibleTabs
*/ */
( function () { ( function () {
var isRTL = document.documentElement.dir === 'rtl', var boundEvent,
boundEvent = false, isRTL = document.documentElement.dir === 'rtl',
rAF = window.requestAnimationFrame || setTimeout; rAF = window.requestAnimationFrame || setTimeout;
/** /**
@ -50,7 +50,7 @@
// if we haven't already bound our resize handler, bind it now // if we haven't already bound our resize handler, bind it now
if ( !boundEvent ) { if ( !boundEvent ) {
boundEvent = true; boundEvent = true;
$( window ).on( 'resize', $.debounce( 100, function () { $( window ).on( 'resize', mw.util.debounce( 100, function () {
rAF( $.collapsibleTabs.handleResize ); rAF( $.collapsibleTabs.handleResize );
} ) ); } ) );
} }

View File

@ -63,7 +63,7 @@
"vector.js" "vector.js"
], ],
"dependencies": [ "dependencies": [
"jquery.throttle-debounce", "mediawiki.util",
"jquery.tabIndex" "jquery.tabIndex"
] ]
} }