Difference between revisions of "MediaWiki:Common.js"

(Replaced content with "Any JavaScript here will be loaded for all users on every page load.: ")
 
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
var customizeToolbar = function() {
 
        'action': {
 
        'type': 'encapsulate',
 
            'options': {
 
                'pre': "aaa",
 
                'periMsg': 'wikieditor-toolbar-tool-bold-example',
 
                'post': "aaa"
 
            }
 
        }
 
    }
 
};
 
 
/* 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 );
 
                        } );
 
                }
 
        } );
 
}
 

Latest revision as of 18:55, 18 July 2013

/* Any JavaScript here will be loaded for all users on every page load. */