MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | ||
section: ' | section: 'advanced', | ||
group: 'format', | group: 'format', | ||
tools: { | tools: { | ||
"hline": { | "hline": { | ||
label: ' | label: 'Annotation', | ||
type: 'button', | type: 'button', | ||
icon: '//bits.wikimedia.org/skins-1.5/common/images/button_hr.png', | icon: '//bits.wikimedia.org/skins-1.5/common/images/button_hr.png', | ||
Line 12: | Line 12: | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "[[", | ||
peri: "Is_aslo_known::", | |||
post: "]] | |||
} | } | ||
} | } |
Revision as of 14:39, 15 April 2012
var customizeToolbar = function() {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"hline": {
label: 'Annotation',
type: 'button',
icon: '//bits.wikimedia.org/skins-1.5/common/images/button_hr.png',
action: {
type: 'encapsulate',
options: {
pre: "[[",
peri: "Is_aslo_known::",
post: "]]
}
}
}
}
} );
/* Your code goes here */
};
/* Check if we are in edit mode and the required modules are available and then customize the toolbar */
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
mw.loader.using( 'user.options', function () {
if ( mw.user.options.get('usebetatoolbar') ) {
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
$(document).ready( customizeToolbar );
} );
}
} );
}