MediaWiki:Common.js: различия между версиями
а удалю-ка я тут всё Метка: очистка |
вот что нам предлагает хоть какая-то настройка викиэда Метка: отменено |
||
Строка 1: | Строка 1: | ||
// Check if we're editing a page. | |||
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { | |||
// Add a hook handler. | |||
mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) { | |||
// Configure a new toolbar entry on the given $textarea jQuery object. | |||
$textarea.wikiEditor( 'addToToolbar', { | |||
/* Your code goes here */ | |||
} ); | |||
} ); | |||
} |
Версия от 01:20, 15 февраля 2023
// Check if we're editing a page.
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
// Add a hook handler.
mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
// Configure a new toolbar entry on the given $textarea jQuery object.
$textarea.wikiEditor( 'addToToolbar', {
/* Your code goes here */
} );
} );
}