mediawiki-extensions-WikiEd.../modules/ext.wikiEditor.toolbar.hideSig.js
2011-04-22 12:10:18 +00:00

12 lines
353 B
JavaScript

/*
* Remove the signature button if the main namespace is edited.
*/
$( document ).ready( function() {
if ( !$.wikiEditor.isSupported( $.wikiEditor.modules.toolbar ) ) {
return;
}
if ( $( 'body' ).hasClass( 'ns-0' ) ) {
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'insert', 'tool': 'signature' } );
}
});