summaryrefslogtreecommitdiff
path: root/extensions/WikiEditor/modules/ext.wikiEditor.templates.js
blob: fec51866955490739f3bdd46776f33ab05001275 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * JavaScript for WikiEditor Templates
 */
( function ( mw, $ ) {
	$( document ).ready( function () {
		// Disable for template namespace
		if ( mw.config.get( 'wgNamespaceNumber' ) === 10 ) {
			return true;
		}
		// Add templates module
		$( '#wpTextbox1' ).wikiEditor( 'addModule', 'templates' );
	} );
}( mediaWiki, jQuery ) );