« MediaWiki:Common.js » : différence entre les versions

Aller à : navigation, rechercher
aucun résumé des modifications
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 26 : Ligne 26 :
};
};


/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
// Check if we're editing a page.
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
mw.loader.using( 'user.options' ).then( function () {
// Add a hook handler.
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
mw.hook( 'wikiEditor.toolbarReady' ).add( function ( $textarea ) {
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
// Configure a new toolbar entry on the given $textarea jQuery object.
$.when(
$textarea.wikiEditor( 'addToToolbar', {
mw.loader.using( 'ext.wikiEditor' ), $.ready
/* Your code goes here */
).then( customizeToolbar );
} );
}
} );
} );
}
}

Menu de navigation