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 129: | Line 129: | ||
label: 'fraction', | label: 'fraction', | ||
type: 'button', | type: 'button', | ||
icon: 'http://bradleymonk.com/pixdrop/data/ | icon: 'http://bradleymonk.com/pixdrop/data/frac.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Line 567: | Line 567: | ||
/* rho BUTTON */ | /* 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', { | $('#wpTextbox1').wikiEditor('addToToolbar', { | ||
section: 'maths', | section: 'maths', | ||
Line 574: | Line 594: | ||
tools: { | tools: { | ||
"maths": { | "maths": { | ||
label: ' | label: 'capsigma', | ||
type: 'button', | type: 'button', | ||
icon: 'http://bradleymonk.com/pixdrop/data/ | icon: 'http://bradleymonk.com/pixdrop/data/capsigma.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', | ||
Line 587: | Line 607: | ||
} | } | ||
}); | }); | ||
/* | /* capital sigma BUTTON */ | ||
Revision as of 16:20, 19 July 2013
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: 'equals',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/equals.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/frac.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/mult.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 */
/* 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 */
/* -------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: '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: '1',
type: 'button',
icon: 'http://bradleymonk.com/pixdrop/data/1.png',
action: {
type: 'encapsulate',
options: {
pre: "{{1|",
post: "}}"
}
}
}
}
});
/* -------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/2.png',
action: {
type: 'encapsulate',
options: {
pre: "{{2|",
post: "}}"
}
}
}
}
});
/* -------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: "{{5|",
post: "}}"
}
}
}
}
});
/* -------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 );
} );
}
} );
}