mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-12 09:57:16 +00:00
1a2daca06a
eqeqeq: * Change loose comparisons to strict comparisons where it seems safe to use a strict comparision instead. Mostly comparisons to strings or objects, and comparisons to numbers where the other value is known to be a number, too. E.g. foo == 'string', bar == node, indexOf() != -1. * Add eqeqeq:false to files where there are non-obvious usages left. onevar, quotmark: * Disabled in files with lots of style violations. unused: * Remove unused variables that have no side-effects in their assigned expression. Coding style cleanups on affected lines where trivial. Change-Id: I5db155a632740e24cb52dba2177c7fc35d5aebd5
14 lines
359 B
JavaScript
14 lines
359 B
JavaScript
/*
|
|
* JavaScript for WikiEditor Template Editor
|
|
*/
|
|
( function ( mw, $ ) {
|
|
$( document ).ready( function () {
|
|
// Disable in template namespace
|
|
if ( mw.config.get( 'wgNamespaceNumber' ) === 10 ) {
|
|
return true;
|
|
}
|
|
// Add template editor module
|
|
$( 'textarea#wpTextbox1' ).wikiEditor( 'addModule', 'templateEditor' );
|
|
} );
|
|
}( mediaWiki, jQuery ) );
|