« MediaWiki:Common.js » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 13 : | Ligne 13 : | ||
pre: "<s>", | pre: "<s>", | ||
post: "</s>" | post: "</s>" | ||
} | |||
} | |||
} | |||
} | |||
}); | |||
$('#wpTextbox1').wikiEditor('addToToolbar', { | |||
section: 'advanced', | |||
group: 'format', | |||
tools: { | |||
"strikethrough": { | |||
label: 'File', | |||
type: 'button', | |||
icon: '', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: "<file>", | |||
post: "</file>" | |||
} | } | ||
} | } |
Version du 18 avril 2012 à 14:13
var customizeToolbar = function() {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"strikethrough": {
label: 'Strike',
type: 'button',
icon: 'http://upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png',
action: {
type: 'encapsulate',
options: {
pre: "<s>",
post: "</s>"
}
}
}
}
});
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"strikethrough": {
label: 'File',
type: 'button',
icon: '',
action: {
type: 'encapsulate',
options: {
pre: "<file>",
post: "</file>"
}
}
}
}
});
};
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
$(window).load(customizeToolbar);
} );
}