mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
/*
|
|
* 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' );
|
|
} );
|