« MediaWiki:Common.js » : différence entre les versions

aucun résumé des modifications
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 9 : Ligne 9 :
tools: {
tools: {
strikethrough: {
strikethrough: {
label: 'Barrer',
    label: 'Barrer',
type: 'button',
type: 'element',
icon: wgScriptPath+ '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png',
element: function ( context ) {
action: {
// Note that the `context` object contains various useful references.
type: 'encapsulate',
console.log( context );
options: {
var button = new OO.ui.ButtonInputWidget( {
pre: "<s>",
label: 'Do a thing',
post: "</s>"
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', {
/*$('#wpTextbox1').wikiEditor('addToToolbar', {