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

From bradwiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 167: Line 167:
/* -------Custom Button End-------- */
/* -------Custom Button End-------- */


/* -------Custom Button Start-------- */
/* -------Custom Button Start {{#info:{{{1}}}|{{{2}}}}}<noinclude> -------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
$('#wpTextbox1').wikiEditor('addToToolbar', {
         section: 'brads',
         section: 'brads',
Line 179: Line 179:
                                 type: 'encapsulate',
                                 type: 'encapsulate',
                                 options: {
                                 options: {
                                         pre: "{{tooltip|",
                                         pre: "{{#info:",
                                         post: "|tooltiptext}}"
                                         post: "|}}"
                                 }
                                 }
                         }
                         }

Revision as of 18:11, 14 July 2013

var customizeToolbar = function() {
        /* Your code goes here */


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'sections': {
                'brads': {
                        'type': 'toolbar', // Can also be 'booklet'
                        'label': 'brads'
                }
        }
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'brads',
        'groups': {
                'tidbits': {
                        'label': 'tidbits'
                }
        }
} );

/* BRADS BUTTONS START */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'Fraction',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/fraction.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{Frac}}",
                                        post: " "
                                }
                        }
                }
        }
});

/* -------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: 'Nc',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/Nc.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{Nc}}",
                                        post: " "
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */

/* -------Custom Button Start {{#info:{{{1}}}|{{{2}}}}}<noinclude> -------- */
$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'brads',
        group: 'tidbits',
        tools: {
                "fraction": {
                        label: 'Tooltip',
                        type: 'button',
                        icon: 'http://bradleymonk.com/pixdrop/data/Tooltip.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "{{#info:",
                                        post: "|}}"
                                }
                        }
                }
        }
});
/* -------Custom Button End-------- */


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

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

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

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

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

/* BRADS BUTTONS START */
jQuery.getScript('http://bradleymonk.com/InsertWikiEditorButton.js', function () {
 
        // Clear
        krInsertWikiEditorButton({
                "id": "[[brad]]-clear",
                "icon": "http://bradleymonk.com/pixdrop/data/Clear.png",
                "label": "Clear Text Below Insert",
                "insertBefore": "{{",
                "insertAfter": "}}",
                "sampleText": "Clear"
        });
 
        // InLine Reference
        krInsertWikiEditorButton({
                "id": "[[brad]]-ref",
                "icon": "http://bradleymonk.com/pixdrop/data/ref.png",
                "label": "InLine Reference",
                "insertBefore": "<ref name=EditMe/>",
                "insertAfter": "</ref>",
                "sampleText": "TextHere"
        });

        // Bibliography Reference
        krInsertWikiEditorButton({
                "id": "[[brad]]-ref",
                "icon": "http://bradleymonk.com/pixdrop/data/cited.png",
                "label": "Works Cited Reference",
                "insertBefore": "<ref name=EditMe/>",
                "insertAfter": "</ref>",
                "sampleText": "TextHere"
        });
 



}); /* BRADS BUTTONS END */



$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "strikethrough": {
                        label: 'Strike',
                        type: 'button',
                        icon: '//upload.wikimedia.org/wikipedia/commons/3/30/Btn_toolbar_rayer.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<s>",
                                        post: "</s>"
                                }
                        }
                }
        }
});


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "hline": {
                        label: 'Horizontal line',
                        type: 'button',
                        icon: '//bits.wikimedia.org/skins-1.5/common/images/button_hr.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "----",
                                        ownline: true
                                }
                        }
                }
        }
} );


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        section: 'advanced',
        group: 'format',
        tools: {
                "math": {
                        label: 'Math',
                        type: 'button',
                        icon: '//bits.wikimedia.org/skins-1.5/common/images/button_math.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<math>",
                                        post: "</math>"
                                }
                        }
                }
        }
} );




};
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar . . . */
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) {
        mw.loader.using( 'user.options', function () {
                if ( mw.user.options.get('usebetatoolbar') ) {
                        mw.loader.using( 'ext.wikiEditor.toolbar', function () {
                                $(document).ready( customizeToolbar );
                        } );
                }
        } );
}