Benutzer:WikiSysop/common.js: Unterschied zwischen den Versionen

Aus Mediawiki Ferdinand Gruber
Zur Navigation springen Zur Suche springen
K
K
 
(7 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
// Check if we're editing a page.
 
 
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
 
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
// 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.
 
 
$textarea.wikiEditor( 'addToToolbar', {
 
$textarea.wikiEditor( 'addToToolbar', {
 
 
section: 'advanced',
 
section: 'advanced',
 
group: 'format',
 
group: 'format',
 
tools: {
 
tools: {
math: {
+
code: {
label: 'Math',
+
label: 'InlineCode',
 
type: 'button',
 
type: 'button',
oouiIcon: 'mathematics',
+
oouiIcon: 'markup',
 
action: {
 
action: {
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: '<math>',
+
pre: '<tt>',
post: '</math>'
+
post: '</tt>'
 
}
 
}
 
}
 
}
 
}
 
}
 
}
 
}
 
 
} );
 
} );
 
} );
 
} );
 
}
 
}

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>'
						}
					}
				}
			}
		} );
	} );
}