MediaWiki:Common.js: различия между версиями
User (обсуждение | вклад) Нет описания правки |
User (обсуждение | вклад) Нет описания правки |
||
Строка 6: | Строка 6: | ||
// Configure a new toolbar entry on the given $textarea jQuery object. | // Configure a new toolbar entry on the given $textarea jQuery object. | ||
$textarea.wikiEditor( 'addToToolbar', { | $textarea.wikiEditor( 'addToToolbar', { | ||
section: 'secondary', | |||
group: 'default', | |||
type: ' | tools: { | ||
dothing: { | |||
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; | |||
} | |||
} | } | ||
} | } |
Версия от 11:18, 13 мая 2024
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */ // Check if we're editing a page. 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: 'secondary', group: 'default', tools: { dothing: { 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; } } } } ); } ); }