| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
So mediawiki.Uri dependency of the modules can be dropped.
Bug: T374314
Change-Id: Ic9d7f1654e31c2c25365a71fb79d87aeeda7ff11
|
|
|
|
| |
Change-Id: Iddfa574e42e569ac5e2a2b098ad2f11ca80c5955
|
|
|
|
|
|
|
| |
This change ensures to use the right encoding for special characters
and the localized namespace name in the URLs.
Change-Id: Idf8fe1a468dae6978d73ddf6f3e776cb8cdae71b
|
|
|
|
|
|
|
| |
The dependency on the module 'mediawiki.jqueryMsg' is not needed
anymore.
Change-Id: Ide7f38c613e785b0f25de5335d9f88f4c25f2624
|
|
|
|
| |
Change-Id: I2930bcabeeb7b7b2eb36063e77b26e664a691b43
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Follows-up Id6d13bbea6:
- '$': mw.loader.implement does this already.
- 'mw': Use the canonical name directly.
This replaces the following patterns:
File closures (common):
- `( function ( $, mw ) {` => `( function () {`
- `( function ( $ ) {` => `( function () {`
- `( function ( mw ) {` => `( function () {`
- `( function ( mw, $ ) {` => `( function () {`
File closures (rare):
- `( function ( mw, $, OO ) {` => `( function () {`
- `( function ( mw, OO, $ ) {` => `( function () {`
- `( function ( mw, document ) {` => `( function () {`
Combined dom-ready and file closure (rare):
- `jQuery( function ( $ ) {` => `$( function () {
- `jQuery( function () {` => `$( function () {
Remaining references in files without a closure, as found by
the new ESLint setting (rare):
- `jQuery` => `$`
- `mediaWiki` => `mw`
Change-Id: I7cf2426cde597259e8c6f3f6f615a1a81a0ca82b
|
|
Bug: T193826
Change-Id: Id25cd18079f48308f6ab42207445bbbd74ed5fda
|