User:Bradley Monk/common.js: Difference between revisions

From bradwiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 685: Line 685:
                                 type: 'encapsulate',
                                 type: 'encapsulate',
                                 options: {
                                 options: {
                                         pre: "<mediaplayer image='http://bradleymonk.com/example.jpg' width='500' height='300'>
                                         pre: "<mediaplayer image=\'http://bradleymonk.com/example.jpg\' width=\'500\' height=\'300\'>",
",
                                         post: "File:vid.mov</mediaplayer>"
                                         post: "File:vid.mov</mediaplayer>"
                                 }
                                 }

Revision as of 15:31, 15 March 2015

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: "&frasl;",
                                        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: "&times;",
                                        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: "&minus;",
                                        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: "&asymp;",
                                        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: "&radic;",
                                        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: "&thinsp;",
                                        post: "&sup2;"
                                }
                        }
                }
        }
});
/* 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: "&alpha;",
                                        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: "&beta;",
                                        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: "&Delta;",
                                        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: "&kappa;",
                                        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: "&lambda;",
                                        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: "&mu;",
                                        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: "&pi;",
                                        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: "&rho;",
                                        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: "&tau;",
                                        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: "&sigma;",
                                        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: "&Sigma;",
                                        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: "<mediaplayer image=\'http://bradleymonk.com/example.jpg\' width=\'500\' height=\'300\'>",
                                        post: "File:vid.mov</mediaplayer>"
                                }
                        }
                }
        }
});
/* -------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: 'textbox',
                        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: 'ExpandBox',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/dropbox.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{ExpandBox|width=80%|float=left|opener=View|TITLE|TEXT",
                                        post: "}}"
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */







/* -------widget:Html5media Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'HTMLvid',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/vidbutton.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{#widget:Html5media|url=",
                                        post: "|width=400}}"
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */








/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'HTMLstyle',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/htmlstyle.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-------- */

/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'AnnotateImage',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/Anotate.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<div class=\"wpImageAnnotatorEnable\"><span class=\"wpImageAnnotatorPageName\" style=\"display:none;\">[[Sandbox]]</span><span class=\"wpImageAnnotatorFullName\" style=\"display:none;\">[[Sandbox]]</span><div class=\"wpImageAnnotatorFile\">[[File:Foo.png]]</div><div style=\"display:none;\"><div><div>{{ImageNoteEnd|id=-1}}</div>",
                                        post: ""
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */

/* -------REFERENCE Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'Reference',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/refbutton.jpg',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{Ref",
                                        post: "|Author2007|pubmedID}}"
                                }
                        }
                }
        }
});
/* -------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 );
                        } );
                }
        } );
}