mediawiki-extensions-WikiEd.../modules/ext.wikiEditor.templateEditor.js
Timo Tijhof 1a2daca06a Kranitor: Make JSHint pass
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
2013-11-10 07:36:03 +00:00

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 ) );