« MediaWiki:Common.js » : différence entre les versions

De Keyla project
Aller à : navigation, rechercher
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 3 : Ligne 3 :
var customizeToolbar = function () {
var customizeToolbar = function () {
/* début code boutons */
/* début code boutons */
$('#wpTextbox1').wikiEditor('addToToolbar', {
alert('on passe par ici');
$textarea.wikiEditor('addToToolbar', {
section: 'main',
section: 'main',
group: 'format',
group: 'format',
caca : 'ola',
tools: {
tools: {
"strikethrough": {
"strikethrough": {

Version du 29 août 2023 à 09:18

/* Tout JavaScript ici sera chargé avec chaque page accédée par n’importe quel utilisateur. */
// Customisation du Wikicode
var customizeToolbar = function () {
/* début code boutons */
alert('on passe par ici');
$textarea.wikiEditor('addToToolbar', {
	section: 'main',
	group: 'format',
	tools: {
		"strikethrough": {
			label: 'Barrer',
			type: 'button',
			icon: wgScriptPath+ '/skins/DarkVector/images/cjnext_toolbar/stroke_icon.png',
			action: {
				type: 'encapsulate',
				options: {
					pre: "<s>",
					post: "</s>"
				}
			}
		}
	}
});

/* fin code boutons */
};

// 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.
	customizeToolbar;
	} );
}