mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 15:53:46 +00:00
Merge "Use mw.util.debounce() in collapsibleTabs.js"
This commit is contained in:
commit
a29c815a4f
|
@ -4,8 +4,8 @@
|
|||
* @class jQuery.plugin.collapsibleTabs
|
||||
*/
|
||||
( function () {
|
||||
var isRTL = document.documentElement.dir === 'rtl',
|
||||
boundEvent = false,
|
||||
var boundEvent,
|
||||
isRTL = document.documentElement.dir === 'rtl',
|
||||
rAF = window.requestAnimationFrame || setTimeout;
|
||||
|
||||
/**
|
||||
|
@ -50,7 +50,7 @@
|
|||
// if we haven't already bound our resize handler, bind it now
|
||||
if ( !boundEvent ) {
|
||||
boundEvent = true;
|
||||
$( window ).on( 'resize', $.debounce( 100, function () {
|
||||
$( window ).on( 'resize', mw.util.debounce( 100, function () {
|
||||
rAF( $.collapsibleTabs.handleResize );
|
||||
} ) );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue