MediaWiki:Common.js: различия между версиями

Материал из Янтарной ноосферы, доступной интернет-энциклопедии
вот что нам предлагает хоть какая-то настройка викиэда
Метка: отменено
добавим какую-то хрень
Метка: отменено
Строка 5: Строка 5:
// 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', {
/* Your code goes here */
$textarea.wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
math: {
label: 'Math',
type: 'button',
oouiIcon: 'mathematics',
action: {
type: 'encapsulate',
options: {
pre: '<math>',
post: '</math>'
}
}
}
}
} );
} );
} );
} );
} );
}
}

Версия от 01:25, 15 февраля 2023

// 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', {
			$textarea.wikiEditor( 'addToToolbar', {
		section: 'advanced',
		group: 'format',
		tools: {
			math: {
				label: 'Math',
				type: 'button',
				oouiIcon: 'mathematics',
				action: {
					type: 'encapsulate',
					options: {
						pre: '<math>',
						post: '</math>'
					}
				}
			}
		}
	} );
		} );
	} );
}