From Earth Science Information Partners (ESIP)
(Created page with "var customizeToolbar = function() { →‎Your code goes here: }; /* Check if view is in edit mode and that the required modules are available. Then, customize the to...")
 
(No difference)

Latest revision as of 11:19, May 13, 2013

var customizeToolbar = function() {
        /* Your code goes here */
};
 
/* 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 );
                        } );
                }
        } );
}