« MediaWiki:Common.js » : différence entre les versions
De Keyla project
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 9 : | Ligne 9 : | ||
tools: { | tools: { | ||
strikethrough: { | strikethrough: { | ||
label: 'Barrer', | |||
type: 'button', | |||
icon: '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "<s>", | |||
post: "</s>" | |||
} | |||
} | } | ||
} | } | ||
} ); | } | ||
}); | |||
/*$('#wpTextbox1').wikiEditor('addToToolbar', { | /*$('#wpTextbox1').wikiEditor('addToToolbar', { | ||
Ligne 24 : | Ligne 30 : | ||
label: 'Barrer', | label: 'Barrer', | ||
type: 'button', | type: 'button', | ||
icon: | icon: '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', |
Version du 29 août 2023 à 12:27
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', {
section: 'main',
group: 'format',
tools: {
strikethrough: {
label: 'Barrer',
type: 'button',
icon: '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png',
action: {
type: 'encapsulate',
options: {
pre: "<s>",
post: "</s>"
}
}
}
}
});
/*$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'main',
group: 'format',
tools: {
"strikethrough": {
label: 'Barrer',
type: 'button',
icon: '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png',
action: {
type: 'encapsulate',
options: {
pre: "<s>",
post: "</s>"
}
}
}
}
});
*/
} );
}