summaryrefslogtreecommitdiff
path: root/extensions/WikiEditor/modules/ext.wikiEditor.templates.js
blob: 4ac09b54c85bca4b32d84317bced85e5f5cc39c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * JavaScript for WikiEditor Templates
 */

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