MediaWiki:Common.js : Différence entre versions
De AGX
Ligne 8 : | Ligne 8 : | ||
type: 'select', | type: 'select', | ||
list: { | list: { | ||
− | ' | + | 'AGX Bleu': { |
− | labelMsg: ' | + | labelMsg: 'AGX Bleu', |
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Ligne 19 : | Ligne 19 : | ||
} | } | ||
}, | }, | ||
− | ' | + | 'AGX Violet': { |
− | labelMsg: ' | + | labelMsg: 'AGX Violet', |
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Ligne 30 : | Ligne 30 : | ||
} | } | ||
}, | }, | ||
− | ' | + | 'AGX Orange': { |
− | labelMsg: ' | + | labelMsg: 'AGX Orange', |
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Ligne 41 : | Ligne 41 : | ||
} | } | ||
}, | }, | ||
− | ' | + | 'AGX Vert': { |
− | labelMsg: ' | + | labelMsg: 'AGX Vert', |
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Ligne 53 : | Ligne 53 : | ||
}, | }, | ||
− | 'AGX | + | 'AGX Remarque': { |
− | labelMsg: 'Agx | + | labelMsg: 'Agx Remarque', |
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', |
Version du 23 avril 2021 à 08:44
var customizeToolbar = function () {
$('#wpTextbox1').wikiEditor('addToToolbar', {
'section': 'advanced',
'group': 'format',
'tools': {
'smile': {
label: 'Fonctions AGX',
type: 'select',
list: {
'AGX Bleu': {
labelMsg: 'AGX Bleu',
action: {
type: 'encapsulate',
options: {
pre: '<p class="bleuAGX">',
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
post: '</p>'
}
}
},
'AGX Violet': {
labelMsg: 'AGX Violet',
action: {
type: 'encapsulate',
options: {
pre: '<p class="violetAGX">',
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
post: '</p>'
}
}
},
'AGX Orange': {
labelMsg: 'AGX Orange',
action: {
type: 'encapsulate',
options: {
pre: '<p class="orangeAGX">',
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
post: '</p>'
}
}
},
'AGX Vert': {
labelMsg: 'AGX Vert',
action: {
type: 'encapsulate',
options: {
pre: '<p class="vertAGX">',
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
post: '</p>'
}
}
},
'AGX Remarque': {
labelMsg: 'Agx Remarque',
action: {
type: 'encapsulate',
options: {
pre: '<p class="remarque">',
periMsg: 'wikieditor-toolbar-tool-nowiki-example',
post: '</p>'
}
}
},
}
}
}
} );
};
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
mw.loader.using( 'user.options', function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
).then( customizeToolbar );
}
} );
}
// Add the customizations to LiquidThreads' edit toolbar, if available
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );