Merge "Remove obsolete aliases from closures"

This commit is contained in:
jenkins-bot 2018-11-16 17:28:18 +00:00 committed by Gerrit Code Review
commit 9744648ffc
3 changed files with 8 additions and 5 deletions

View file

@ -1,7 +1,10 @@
{ {
"extends": "wikimedia", "extends": "wikimedia",
"env": { "env": {
"browser": true, "browser": true
"jquery": true },
"globals": {
"$": false,
"mw": false
} }
} }

View file

@ -3,7 +3,7 @@
* *
* @class jQuery.plugin.collapsibleTabs * @class jQuery.plugin.collapsibleTabs
*/ */
( function ( $ ) { ( function () {
var isRTL = document.documentElement.dir === 'rtl', var isRTL = document.documentElement.dir === 'rtl',
boundEvent = false, boundEvent = false,
rAF = window.requestAnimationFrame || setTimeout; rAF = window.requestAnimationFrame || setTimeout;
@ -228,4 +228,4 @@
* @mixins jQuery.plugin.collapsibleTabs * @mixins jQuery.plugin.collapsibleTabs
*/ */
}( jQuery ) ); }() );

View file

@ -1,7 +1,7 @@
/** /**
* Vector-specific scripts * Vector-specific scripts
*/ */
jQuery( function ( $ ) { $( function () {
/** /**
* Collapsible tabs * Collapsible tabs