« MediaWiki:Common.js » : différence entre les versions
De Keyla project
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 15 : | Ligne 15 : | ||
console.log( context ); | console.log( context ); | ||
var button = new OO.ui.ButtonInputWidget( {label: 'Do a thing',icon: 'hieroglyph'} ); | var button = new OO.ui.ButtonInputWidget( {label: 'Do a thing',icon: 'hieroglyph'} ); | ||
button.connect( null, {click: function ( e ) {console.log( e ); OO.ui.alert( 'A thing is done.' );} | |||
} ); | |||
} | } | ||
} | } |
Version du 29 août 2023 à 12:21
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: 'element',
//icon: '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png',
element: function ( context ) {
console.log( context );
var button = new OO.ui.ButtonInputWidget( {label: 'Do a thing',icon: 'hieroglyph'} );
button.connect( null, {click: function ( e ) {console.log( e ); OO.ui.alert( 'A thing is done.' );}
} );
}
}
}
} );
/*$('#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>"
}
}
}
}
});
*/
} );
}