« MediaWiki:Common.js » : différence entre les versions
De Keyla project
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { | if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { | ||
// Add a hook handler. | // Add a hook handler. | ||
mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) { | mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) { | ||
// 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', { | |||
sections: { | |||
emoticons: { | |||
type: 'toolbar', // Can also be 'booklet', | |||
label: 'Emoticons' | |||
// or label: mw.msg( 'section-emoticons-label' ) for a localized label | |||
} | } | ||
} | } | ||
}); | } ); | ||
} ); | |||
} | } | ||
Version du 29 août 2023 à 09:29
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
}
}
} );
} );
}