User:Bradley Monk/common.js: Difference between revisions
Jump to navigation
Jump to search
Bradley Monk (talk | contribs) No edit summary |
Bradley Monk (talk | contribs) No edit summary |
||
Line 19: | Line 19: | ||
}); | }); | ||
// | // InLine Reference | ||
krInsertWikiEditorButton({ | krInsertWikiEditorButton({ | ||
"id": "mw-customeditbutton-myspecialbutton", | "id": "mw-customeditbutton-myspecialbutton", | ||
"icon": "http:// | "icon": "http://bradleymonk.com/pixdrop/data/ref.png", | ||
"label": " | "label": "InLine Reference", | ||
"insertBefore": " | "insertBefore": "<ref name=", | ||
"insertAfter": " | "insertAfter": "/>", | ||
"sampleText": " | "sampleText": "REFLABELHERE" | ||
}); | }); | ||
Revision as of 19:40, 22 May 2013
var customizeToolbar = function() {
/* Your code goes here */
/**
* Extra buttons in toolbar
* @stats [[File:Krinkle_InsertWikiEditorButton.js]]
*/
jQuery.getScript('http://bradleymonk.com/InsertWikiEditorButton.js', function () {
// Clear
krInsertWikiEditorButton({
"id": "mw-customeditbutton-myspecialbutton",
"icon": "http://bradleymonk.com/pixdrop/data/Clear.png",
"label": "Clear Text Below Insert",
"insertBefore": "{{",
"insertAfter": "}}",
"sampleText": "Clear"
});
// InLine Reference
krInsertWikiEditorButton({
"id": "mw-customeditbutton-myspecialbutton",
"icon": "http://bradleymonk.com/pixdrop/data/ref.png",
"label": "InLine Reference",
"insertBefore": "<ref name=",
"insertAfter": "/>",
"sampleText": "REFLABELHERE"
});
});
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"strikethrough": {
label: 'Strike',
type: 'button',
icon: '//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: {
"hline": {
label: 'Horizontal line',
type: 'button',
icon: '//bits.wikimedia.org/skins-1.5/common/images/button_hr.png',
action: {
type: 'encapsulate',
options: {
pre: "----",
ownline: true
}
}
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
"math": {
label: 'Math',
type: 'button',
icon: '//bits.wikimedia.org/skins-1.5/common/images/button_math.png',
action: {
type: 'encapsulate',
options: {
pre: "<math>",
post: "</math>"
}
}
}
}
} );
};
/* 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 () {
if ( mw.user.options.get('usebetatoolbar') ) {
mw.loader.using( 'ext.wikiEditor.toolbar', function () {
$(document).ready( customizeToolbar );
} );
}
} );
}