User:Bradley Monk/common.js
Jump to navigation
Jump to search
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
var customizeToolbar = function() {
/* Your code goes here */
/* ADDS A BRADS SECTION TO THE START BAR */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'sections': {
'brads': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'brads'
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'brads',
'groups': {
'tidbits': {
'label': 'tidbits'
}
}
} );
/* ADDS A BRADS SECTION TO THE START BAR */
/* ADDS A MATHS SECTION TO THE START BAR */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'sections': {
'maths': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'maths'
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'maths',
'groups': {
'maths': {
'label': 'maths'
}
}
} );
/* ADDS A MATH SECTION TO THE START BAR */
/* -------BUTTON TEMPLATE BUTTON-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'button',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/button.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Button|",
post: "}}"
}
}
}
}
});
/* -------BUTTON TEMPLATE BUTTON-------- */
/* MATHS BUTTONS START */
/* MATH TEMPLATE BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'math',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/math.png',
action: {
type: 'encapsulate',
options: {
pre: "{{math|",
post: "}}"
}
}
}
}
});
/* MATH TEMPLATE BUTTON */
/* equals BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'equal',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/equal.png',
action: {
type: 'encapsulate',
options: {
pre: "{{=}}",
post: ""
}
}
}
}
});
/* equals BUTTON */
/* FRACTION BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'fraction',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/div.png',
action: {
type: 'encapsulate',
options: {
pre: "⁄",
post: ""
}
}
}
}
});
/* FRACTION BUTTON */
/* multiply BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'multiply',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/multiply.png',
action: {
type: 'encapsulate',
options: {
pre: "×",
post: ""
}
}
}
}
});
/* multiply BUTTON */
/* minus BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'minus',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/minus.png',
action: {
type: 'encapsulate',
options: {
pre: "−",
post: ""
}
}
}
}
});
/* minus BUTTON */
/* approx BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'approx',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/approx.png',
action: {
type: 'encapsulate',
options: {
pre: "≈",
post: ""
}
}
}
}
});
/* approx BUTTON */
/* line BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'line',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/line.png',
action: {
type: 'encapsulate',
options: {
pre: "¡",
post: ""
}
}
}
}
});
/* line BUTTON */
/* dot BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'dot',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/dot.png',
action: {
type: 'encapsulate',
options: {
pre: "•",
post: ""
}
}
}
}
});
/* dot BUTTON */
/* check BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'check',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/check.png',
action: {
type: 'encapsulate',
options: {
pre: "√",
post: ""
}
}
}
}
});
/* check BUTTON */
/* sub BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'sub',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/sub.png',
action: {
type: 'encapsulate',
options: {
pre: "<sub>",
post: "</sub>"
}
}
}
}
});
/* sub BUTTON */
/* sup BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'sup',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/sup.png',
action: {
type: 'encapsulate',
options: {
pre: "<sup>",
post: "</sup>"
}
}
}
}
});
/* sup BUTTON */
/* var BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'var',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/var.png',
action: {
type: 'encapsulate',
options: {
pre: "<var>",
post: "</var>"
}
}
}
}
});
/* var BUTTON */
/* rad BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'rad',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/rad.png',
action: {
type: 'encapsulate',
options: {
pre: "{{radical|",
post: "}}"
}
}
}
}
});
/* rad BUTTON */
/* squared BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'squared',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/squared.png',
action: {
type: 'encapsulate',
options: {
pre: " ",
post: "²"
}
}
}
}
});
/* squared BUTTON */
/* alpha BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'alpha',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/alpha.png',
action: {
type: 'encapsulate',
options: {
pre: "α",
post: ""
}
}
}
}
});
/* alpha BUTTON */
/* beta BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'beta',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/beta.png',
action: {
type: 'encapsulate',
options: {
pre: "β",
post: ""
}
}
}
}
});
/* beta BUTTON */
/* delta BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'mu',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/delta.png',
action: {
type: 'encapsulate',
options: {
pre: "Δ",
post: ""
}
}
}
}
});
/* delta BUTTON */
/* kappa BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'kappa',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/kappa.png',
action: {
type: 'encapsulate',
options: {
pre: "κ",
post: ""
}
}
}
}
});
/* kappa BUTTON */
/* lambda BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'lambda',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/lambda.png',
action: {
type: 'encapsulate',
options: {
pre: "λ",
post: ""
}
}
}
}
});
/* lambda BUTTON */
/* mu BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'mu',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/mu.png',
action: {
type: 'encapsulate',
options: {
pre: "μ",
post: ""
}
}
}
}
});
/* mu BUTTON */
/* pi BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'pi',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/pi.png',
action: {
type: 'encapsulate',
options: {
pre: "π",
post: ""
}
}
}
}
});
/* pi BUTTON */
/* rho BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'rho',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/rho.png',
action: {
type: 'encapsulate',
options: {
pre: "ρ",
post: ""
}
}
}
}
});
/* rho BUTTON */
/* tau BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'tau',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/tau.png',
action: {
type: 'encapsulate',
options: {
pre: "τ",
post: ""
}
}
}
}
});
/* rho BUTTON */
/* small sigma BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'sigma',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/sigma.png',
action: {
type: 'encapsulate',
options: {
pre: "σ",
post: ""
}
}
}
}
});
/* small sigma BUTTON */
/* capital sigma BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'capsigma',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/capsigma.png',
action: {
type: 'encapsulate',
options: {
pre: "Σ",
post: ""
}
}
}
}
});
/* capital sigma BUTTON */
/* greeks BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'maths',
group: 'maths',
tools: {
"maths": {
label: 'greeks',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/greeks.png',
action: {
type: 'encapsulate',
options: {
pre: "α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ σ ς τ υ φ χ ψ ω Γ Δ Θ Λ Ξ Π Σ Φ Ψ Ω",
post: ""
}
}
}
}
});
/* greeks BUTTON */
/* MATHS BUTTONS END */
/* -------VIDEO Custom Button Start -------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'vid',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/vid.png',
action: {
type: 'encapsulate',
options: {
pre: "<HTML><embed src=\"",
post: "\" height=\"500\" width=\"640\" autoplay=\"false\"></HTML>"
}
}
}
}
});
/* -------VIDEO Custom Button End -------- */
/* -------Custom Button Start NOWIKI -------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'nowiki',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/nowiki.png',
action: {
type: 'encapsulate',
options: {
pre: "<nowiki>",
post: "</nowiki>"
}
}
}
}
});
/* -------Custom Button End NOWIKI -------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'pre',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/pre.png',
action: {
type: 'encapsulate',
options: {
pre: "<pre>",
post: "</pre>"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'big',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/big.png',
action: {
type: 'encapsulate',
options: {
pre: "<big>",
post: "</big>"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'code',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/code.png',
action: {
type: 'encapsulate',
options: {
pre: "<code>",
post: "</code>"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'Up',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/up.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Up}}",
post: " "
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'Dn',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/dn.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Dn}}",
post: " "
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'Quote',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/quote.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Quote|",
post: "}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start Popup -------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'pop3',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/popup.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Pop3|[[File:Dot.png]]",
post: "|Figure Caption|Header Text|Inline Text}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start Popup -------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'popup',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/popup.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Popup|",
post: "}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start Tooltip -------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'Fig',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/fig.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Fig|[[",
post: "]]}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: 'syntax',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/syntax.png',
action: {
type: 'encapsulate',
options: {
pre: "<syntaxhighlight lang=\"matlab\" line start=\"1\" highlight=\"1\" enclose=\"div\">",
post: "</syntaxhighlight>"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: '2',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/buttonbox.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Box|font{{=}}150%|width{{=}}50%|float{{=}}left|text{{=}}12px|boarder{{=}}solid #aaa 1px| Header Font|",
post: "XXXXXX}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: '3',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/3.png',
action: {
type: 'encapsulate',
options: {
pre: "{{3|",
post: "}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: '4',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/4.png',
action: {
type: 'encapsulate',
options: {
pre: "{{4|",
post: "}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'brads',
group: 'tidbits',
tools: {
"fraction": {
label: '5',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/5.png',
action: {
type: 'encapsulate',
options: {
pre: "{{Style|size=150%|align=center|border=1px dotted red|font=Century Gothic|background=grey|color=red|pad=8px|margin=6px|",
post: "THIS TEXT IS AWESOME}}"
}
}
}
}
});
/* -------Custom Button End-------- */
/* BRADS BUTTONS START */
jQuery.getScript('http://bradleymonk.com/InsertWikiEditorButton.js', function () {
// Clear
krInsertWikiEditorButton({
"id": "[[brad]]-clear",
"icon": "http://bradleymonk.com/pixdrop/data/Clear.png",
"label": "Clear Text Below Insert",
"insertBefore": "{{",
"insertAfter": "}}",
"sampleText": "Clear"
});
// InLine Reference
krInsertWikiEditorButton({
"id": "[[brad]]-ref",
"icon": "http://bradleymonk.com/pixdrop/data/ref.png",
"label": "InLine Reference",
"insertBefore": "<ref name=EditMe/>",
"insertAfter": "</ref>",
"sampleText": "TextHere"
});
// Bibliography Reference
krInsertWikiEditorButton({
"id": "[[brad]]-ref",
"icon": "http://bradleymonk.com/pixdrop/data/cited.png",
"label": "Works Cited Reference",
"insertBefore": "<ref name=EditMe/>",
"insertAfter": "</ref>",
"sampleText": "TextHere"
});
}); /* BRADS BUTTONS END */
$('#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 );
} );
}
} );
}