Remove redundant closure aliases

'mw' are '$' are globals, always have been, and aren't going
anywhere. They're every bit as real as their longer versions.
If anything, the longer ones are less "real" or 'stable" because
they're not used internally by RL and easier to accidentally
replace or override. For anecdotes and history, see 91f950d6b0.

Change-Id: I526fb8c961d9477992d88f2780a0ff4cbdc51923
This commit is contained in:
Timo Tijhof
2018-09-06 22:55:46 +01:00
committed by Krinkle
parent e58be7c411
commit 4e067715dc
18 changed files with 43 additions and 36 deletions

View File

@@ -17,7 +17,7 @@
* @licence MIT License
*/
( function ( $, mw ) {
( function () {
'use strict';
var ulsPreferences;
@@ -138,4 +138,5 @@
mw.loader.using( 'ext.uls.webfonts.fonts', mw.webfonts.setup );
}
} );
}( jQuery, mediaWiki ) );
}() );