mediawiki-extensions-WikiEd.../modules/ext.wikiEditor.templates.js
Trevor Parscal 089b73aa5d * Moved ResourceLoader modules into the ext.* space - this is the convention that should be followed in the future
* Moved test resource to the modules folder and registered it
* Fixed tests file to use $ not $j
* Cleaned up syntax in module definitions
2010-09-20 20:06:18 +00:00

12 lines
283 B
JavaScript

/*
* JavaScript for WikiEditor Templates
*/
$( document ).ready( function() {
// Disable for template namespace
if ( mediaWiki.config.get( 'wgNamespaceNumber' ) == 10 ) {
return true;
}
// Add templates module
$( '#wpTextbox1' ).wikiEditor( 'addModule', 'templates' );
} );