MediaWiki:Common.js: verschil tussen versies

Uit wikilab
Ga naar: navigatie, zoeken
 
k (1 revision)
 
(geen verschil)

Huidige versie van 22 jan 2014 om 15:53

var customizeToolbar = function() {

$('#wpTextbox1').wikiEditor('addToToolbar', {
        section: 'main',
        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: 'main',
        group: 'insert',
        tools: {
                "strikethrough": {
                        label: 'Pubmed',
                        type: 'button',
                        icon: '//www.ncbi.nlm.nih.gov/favicon.ico',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "<ref>{{#pmid:",
                                        post: "}}</ref>"
                                }
                        }
                }
        }
});

};
 
/* 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 );
                        } );
                }
        } );
}