437
modifications
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 9 : | Ligne 9 : | ||
tools: { | tools: { | ||
strikethrough: { | strikethrough: { | ||
label: 'Barrer', | |||
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', { | /*$('#wpTextbox1').wikiEditor('addToToolbar', { |