Benutzer:WikiSysop/common.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
K |
K |
||
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
− | |||
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { | if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { | ||
− | |||
mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) { | mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) { | ||
− | |||
$textarea.wikiEditor( 'addToToolbar', { | $textarea.wikiEditor( 'addToToolbar', { | ||
− | |||
section: 'advanced', | section: 'advanced', | ||
group: 'format', | group: 'format', | ||
tools: { | tools: { | ||
− | + | code: { | |
label: 'InlineCode', | label: 'InlineCode', | ||
type: 'button', | type: 'button', | ||
− | oouiIcon: ' | + | oouiIcon: 'markup', |
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Zeile 22: | Zeile 18: | ||
} | } | ||
} | } | ||
− | |||
} ); | } ); | ||
} ); | } ); | ||
} | } |
Aktuelle Version vom 18. Dezember 2024, 11:53 Uhr
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) { mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) { $textarea.wikiEditor( 'addToToolbar', { section: 'advanced', group: 'format', tools: { code: { label: 'InlineCode', type: 'button', oouiIcon: 'markup', action: { type: 'encapsulate', options: { pre: '<tt>', post: '</tt>' } } } } } ); } ); }