MediaWiki:Common.js: Unterschied zwischen den Versionen
Aus Sandboxgamer
Admin (Diskussion | Beiträge) Markierung: Zurückgesetzt |
Admin (Diskussion | Beiträge) Markierung: Zurückgesetzt |
||
Zeile 11: | Zeile 11: | ||
label: 'Strike', | label: 'Strike', | ||
type: 'button', | type: 'button', | ||
icon: 'https:// | icon: 'https://upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Zeile 30: | Zeile 30: | ||
label: 'Code', | label: 'Code', | ||
type: 'button', | type: 'button', | ||
icon: 'https:// | icon: 'https://upload.wikimedia.org/wikipedia/commons/2/23/Button_code.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', |
Version vom 16. Februar 2022, 08:48 Uhr
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: 'advanced', group: 'format', tools: { "strikethrough": { label: 'Strike', type: 'button', icon: 'https://upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png', action: { type: 'encapsulate', options: { pre: "<s>", post: "</s>" } } } } } ); $textarea.wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { "strikethrough": { label: 'Code', type: 'button', icon: 'https://upload.wikimedia.org/wikipedia/commons/2/23/Button_code.png', action: { type: 'encapsulate', options: { pre: "<code>", post: "</code>" } } } } } ); } ); }