mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-12 09:57:16 +00:00
bddd21b300
* Added closures for jQuery where missing. * Added closures for mediaWiki where missing. * Using ready( $ ) where possible. * Removed empty CSS block. Change-Id: Ifdd4b10063221a4967d812eafd43858623ec5d28
15 lines
608 B
JavaScript
15 lines
608 B
JavaScript
/*
|
|
* Remove the signature button if the main namespace is edited.
|
|
*/
|
|
jQuery( document ).ready( function ( $ ) {
|
|
// This module is designed not to depend on ext.wikiEditor or jquery.wikiEditor.
|
|
// Removing this dependency fixed various bugs, but it does mean that we have to
|
|
// account for the situation where $.wikiEditor is not present
|
|
if ( !$.wikiEditor || !$.wikiEditor.isSupported( $.wikiEditor.modules.toolbar ) ) {
|
|
return;
|
|
}
|
|
if ( $( 'body' ).hasClass( 'ns-0' ) ) {
|
|
$( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'main', 'group': 'insert', 'tool': 'signature' } );
|
|
}
|
|
} );
|