MediaWiki:Common.js
Aus BS-Wiki: Wissen teilen
Version vom 8. April 2012, 00:21 Uhr von Dg (Diskussion | Beiträge)
/* 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 );
} );
}
} );
}