MediaWiki:Common.js: различия между версиями
User (обсуждение | вклад) (Новая страница: «→Размещённый здесь код 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. $textar...») |
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', { | ||
/ | sections: { | ||
emoticons: { | |||
type: 'toolbar', // Can also be 'booklet', | |||
label: 'Emoticons' | |||
// or label: mw.msg( 'section-emoticons-label' ) for a localized label | |||
} | |||
} | |||
} ); | } ); | ||
} ); | } ); | ||
} | } |
Версия от 11:15, 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', { sections: { emoticons: { type: 'toolbar', // Can also be 'booklet', label: 'Emoticons' // or label: mw.msg( 'section-emoticons-label' ) for a localized label } } } ); } ); }