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

From bradwiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(80 intermediate revisions by the same user not shown)
Line 3: Line 3:




/* ADDS A BRADS SECTION TO THE START BAR */
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
         'sections': {
         'sections': {
Line 15: Line 17:
         'section': 'brads',
         'section': 'brads',
         'groups': {
         'groups': {
                 'math': {
                 'tidbits': {
                         'label': 'math'
                         '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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/rad.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{radical|",
                                        post: "}}"
                                }
                        }
                }
        }
});
/* rad BUTTON */


/* BRADS BUTTONS START */
 
 
/* squared BUTTON */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'maths',
        group: 'maths',
        tools: {
                "maths": {
                        label: 'squared',
                        type: 'button',
                        icon: 'http://bradleymonk.com/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/code.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<code>",
                                        post: "</code>"
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */
 
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
         section: 'brads',
         section: 'brads',
         group: 'math',
         group: 'tidbits',
         tools: {
         tools: {
                 "fraction": {
                 "fraction": {
                         label: 'Fraction',
                         label: 'Up',
                         type: 'button',
                         type: 'button',
                         icon: 'http://bradleymonk.com/pixdrop/data/fraction.png',
                         icon: 'http://bradleymonk.com/img/wikitoolbar/up.png',
                         action: {
                         action: {
                                 type: 'encapsulate',
                                 type: 'encapsulate',
                                 options: {
                                 options: {
                                         pre: "{{Frac}}",
                                         pre: "{{Up}}",
                                         post: " "
                                         post: " "
                                 }
                                 }
Line 40: Line 803:
         }
         }
});
});
/* -------Custom Button End-------- */
/* -------Custom Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'Dn',
                        type: 'button',
                        icon: 'http://bradleymonk.com/img/wikitoolbar/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/img/wikitoolbar/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: 'PopFig',
                        type: 'button',
                        icon: 'http://bradleymonk.com/img/wikitoolbar/popfig.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{PopFig|[[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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/box.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/img/wikitoolbar/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/img/wikitoolbar/vidhtml.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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/ref.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{Ref",
                                        post: "|Author2007|pubmedID}}"
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */
/* -------SMALLBOX Button Start-------- *//* -------SMALLBOX Button Start-------- */
/* -------SMALLBOX Button Start-------- *//* -------SMALLBOX Button Start-------- */
/* -------SMALLBOX Button Start-------- *//* -------SMALLBOX Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'Reference',
                        type: 'button',
                        icon: 'http://bradleymonk.com/img/wikitoolbar/box.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{SmallBox|display=block|float=none|clear=both|width=50%|margin=5px auto|padding=5px auto|bg-color=#FFF|font=Arial|font-size=18px|text-align=center|border-style=groove|border-width=2px|border-color=#8c9091|border-radius=6px|MAINTXT ",
                                        post: "|txt-align=left|txt-size=14px|OPTIONALTXT}}"
                                }
                        }
                }
        }
});
/* -------SMALLBOX Button End-------- *//* -------SMALLBOX Button End-------- */
/* -------SMALLBOX Button End-------- *//* -------SMALLBOX Button End-------- */
/* -------SMALLBOX Button End-------- *//* -------SMALLBOX Button End-------- */




/* BRADS BUTTONS START */
/* BRADS BUTTONS START */
jQuery.getScript('http://bradleymonk.com/InsertWikiEditorButton.js', function () {
jQuery.getScript('http://bradleymonk.com/InsertWikiEditorButton.js', function () {
 
         // Clear
         // Clear
         krInsertWikiEditorButton({
         krInsertWikiEditorButton({
                 "id": "[[brad]]-clear",
                 "id": "[[brad]]-clear",
                 "icon": "http://bradleymonk.com/pixdrop/data/Clear.png",
                 "icon": "http://bradleymonk.com/img/wikitoolbar/clear.png",
                 "label": "Clear Text Below Insert",
                 "label": "Clear Text Below Insert",
                 "insertBefore": "{{",
                 "insertBefore": "{{",
Line 54: Line 1,119:
                 "sampleText": "Clear"
                 "sampleText": "Clear"
         });
         });
 
         // InLine Reference
         // InLine Reference
         krInsertWikiEditorButton({
         krInsertWikiEditorButton({
                 "id": "[[brad]]-ref",
                 "id": "[[brad]]-ref",
                 "icon": "http://bradleymonk.com/pixdrop/data/ref.png",
                 "icon": "http://bradleymonk.com/img/wikitoolbar/ref.png",
                 "label": "InLine Reference",
                 "label": "InLine Reference",
                 "insertBefore": "<ref name=",
                 "insertBefore": "<ref name=\"Author2015\">",
                 "insertAfter": "/>",
                 "insertAfter": "</ref>",
                 "sampleText": "REFLABELHERE"
                 "sampleText": "OptionalText"
         });
         });
 
        // Bibliography Reference
        krInsertWikiEditorButton({
                "id": "[[brad]]-refs",
                "icon": "http://bradleymonk.com/img/wikitoolbar/refs.png",
                "label": "Works Cited Reference",
                "insertBefore": "<references>",
                "insertAfter": "<references />",
                "sampleText": "<ref name=\"Author2015\">Author_Year_Title</ref>"
        });
 




Line 99: Line 1,174:
                         label: 'Horizontal line',
                         label: 'Horizontal line',
                         type: 'button',
                         type: 'button',
                         icon: '//bits.wikimedia.org/skins-1.5/common/images/button_hr.png',
                         icon: 'http://bradleymonk.com/img/wikitoolbar/line.png',
                         action: {
                         action: {
                                 type: 'encapsulate',
                                 type: 'encapsulate',
Line 119: Line 1,194:
                         label: 'Math',
                         label: 'Math',
                         type: 'button',
                         type: 'button',
                         icon: '//bits.wikimedia.org/skins-1.5/common/images/button_math.png',
                         icon: 'http://bradleymonk.com/img/wikitoolbar/math.png',
                         action: {
                         action: {
                                 type: 'encapsulate',
                                 type: 'encapsulate',
Line 135: Line 1,210:


};
};
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar . . . */
/* 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 ) {
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {

Latest revision as of 01:03, 21 January 2018

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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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: 'PopFig',
                        type: 'button',
                        icon: 'http://bradleymonk.com/img/wikitoolbar/popfig.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{PopFig|[[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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/box.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/img/wikitoolbar/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/img/wikitoolbar/vidhtml.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/img/wikitoolbar/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/img/wikitoolbar/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/img/wikitoolbar/ref.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{Ref",
                                        post: "|Author2007|pubmedID}}"
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */


/* -------SMALLBOX Button Start-------- *//* -------SMALLBOX Button Start-------- */
/* -------SMALLBOX Button Start-------- *//* -------SMALLBOX Button Start-------- */
/* -------SMALLBOX Button Start-------- *//* -------SMALLBOX Button Start-------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'Reference',
                        type: 'button',
                        icon: 'http://bradleymonk.com/img/wikitoolbar/box.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{SmallBox|display=block|float=none|clear=both|width=50%|margin=5px auto|padding=5px auto|bg-color=#FFF|font=Arial|font-size=18px|text-align=center|border-style=groove|border-width=2px|border-color=#8c9091|border-radius=6px|MAINTXT ",
                                        post: "|txt-align=left|txt-size=14px|OPTIONALTXT}}"
                                }
                        }
                }
        }
});

/* -------SMALLBOX Button End-------- *//* -------SMALLBOX Button End-------- */
/* -------SMALLBOX Button End-------- *//* -------SMALLBOX Button End-------- */
/* -------SMALLBOX Button End-------- *//* -------SMALLBOX Button End-------- */




/* BRADS BUTTONS START */
jQuery.getScript('http://bradleymonk.com/InsertWikiEditorButton.js', function () {

        // Clear
        krInsertWikiEditorButton({
                "id": "[[brad]]-clear",
                "icon": "http://bradleymonk.com/img/wikitoolbar/clear.png",
                "label": "Clear Text Below Insert",
                "insertBefore": "{{",
                "insertAfter": "}}",
                "sampleText": "Clear"
        });

        // InLine Reference
        krInsertWikiEditorButton({
                "id": "[[brad]]-ref",
                "icon": "http://bradleymonk.com/img/wikitoolbar/ref.png",
                "label": "InLine Reference",
                "insertBefore": "<ref name=\"Author2015\">",
                "insertAfter": "</ref>",
                "sampleText": "OptionalText"
        });

        // Bibliography Reference
        krInsertWikiEditorButton({
                "id": "[[brad]]-refs",
                "icon": "http://bradleymonk.com/img/wikitoolbar/refs.png",
                "label": "Works Cited Reference",
                "insertBefore": "<references>",
                "insertAfter": "<references />",
                "sampleText": "<ref name=\"Author2015\">Author_Year_Title</ref>"
        });




}); /* 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: 'http://bradleymonk.com/img/wikitoolbar/line.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "----",
                                        ownline: true
                                }
                        }
                }
        }
} );


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "math": {
                        label: 'Math',
                        type: 'button',
                        icon: 'http://bradleymonk.com/img/wikitoolbar/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 );
                        } );
                }
        } );
}