Remove obsolete aliases from closures

Bug: T208951
Change-Id: Ia4b1a813c9eb8c24db42ded937d40feea539f9c5
This commit is contained in:
Ed Sanders 2018-11-12 16:14:43 +00:00
parent 954b37599a
commit 3986634d8a
3 changed files with 9 additions and 6 deletions

View File

@ -1,13 +1,11 @@
{
"extends": "wikimedia",
"env": {
"browser": true,
"jquery": true
"browser": true
},
"globals": {
"ve": true,
"mw": true,
"mediaWiki": false,
"$": false,
"OO": false
},
"rules": {

View File

@ -1,4 +1,4 @@
( function ( $ ) {
( function () {
'use strict';
// If MathPlayer is installed we show the MathML rendering.
@ -16,4 +16,4 @@
this.src = this.src.replace( 'mode=mathml', 'mode=mathml-png' );
} );
}
}( jQuery ) );
}() );

View File

@ -0,0 +1,5 @@
{
"globals": {
"ve": false
}
}