MediaWiki:Common.js

Aus BS-Wiki: Wissen teilen
Wechseln zu: Navigation, Suche
/* Jedes JavaScript hier wird für alle Benutzer für jede Seite geladen. */
var customizeToolbar = function() {
        /* Your code goes here */
};
 
/* Check if we are in edit mode and the required modules are available and 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 );
                        } );
                }
        } );
}