mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 23:55:53 +00:00
Merge "Remove obsolete aliases from closures"
This commit is contained in:
commit
9744648ffc
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"extends": "wikimedia",
|
"extends": "wikimedia",
|
||||||
"env": {
|
"env": {
|
||||||
"browser": true,
|
"browser": true
|
||||||
"jquery": true
|
},
|
||||||
|
"globals": {
|
||||||
|
"$": false,
|
||||||
|
"mw": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 ) );
|
}() );
|
||||||
|
|
Loading…
Reference in a new issue