MediaWiki:Common.js: Difference between revisions
add comment and math button to source edfitor |
No edit summary |
||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
// www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization | |||
// Add stuff to the source editor toolbar | // Add stuff to the source editor toolbar | ||
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { | if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { |
Latest revision as of 14:20, 12 February 2023
/* Any JavaScript here will be loaded for all users on every page load. */
// www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization
// Add stuff to the source editor toolbar
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.
// comment button
$textarea.wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
comment: {
label: 'Comment',
type: 'button',
icon: 'https://upload.wikimedia.org/wikipedia/commons/3/37/Btn_toolbar_commentaire.png',
action: {
type: 'encapsulate',
options: {
pre: '<!-- ',
post: ' -->'
}
}
}
}
} );
// math button
$textarea.wikiEditor( 'addToToolbar', {
section: 'main',
group: 'format',
tools: {
math: {
label: 'Math',
type: 'button',
oouiIcon: 'mathematics',
action: {
type: 'encapsulate',
options: {
pre: '<math>',
post: '</math>'
}
}
}
}
} );
} );
}