« MediaWiki:Common.js » : différence entre les versions
De Sur les traces des sondes Voyager
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 8 : | Ligne 8 : | ||
group: 'format', | group: 'format', | ||
tools: { | tools: { | ||
strikethrough: { | |||
type: 'element', | type: 'element', | ||
element: function ( context ) { | element: function ( context ) { | ||
Ligne 29 : | Ligne 29 : | ||
} | } | ||
} ); | } ); | ||
/*$('#wpTextbox1').wikiEditor('addToToolbar', { | |||
section: 'main', | |||
group: 'format', | |||
tools: { | |||
"strikethrough": { | |||
label: 'Barrer', | |||
type: 'button', | |||
icon: wgScriptPath+ '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "<s>", | |||
post: "</s>" | |||
} | |||
} | |||
} | |||
} | |||
}); | |||
*/ | |||
} ); | } ); | ||
} | } |
Version du 29 août 2023 à 12:03
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: {
type: 'element',
element: function ( context ) {
// Note that the `context` object contains various useful references.
console.log( context );
var button = new OO.ui.ButtonInputWidget( {
label: 'Do a thing',
icon: 'hieroglyph'
} );
button.connect( null, {
click: function ( e ) {
// Do whatever is required when the button is clicked.
console.log( e );
OO.ui.alert( 'A thing is done.' );
}
} );
return button.$element;
}
}
}
} );
/*$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'main',
group: 'format',
tools: {
"strikethrough": {
label: 'Barrer',
type: 'button',
icon: wgScriptPath+ '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png',
action: {
type: 'encapsulate',
options: {
pre: "<s>",
post: "</s>"
}
}
}
}
});
*/
} );
}