|
|
Riga 1: |
Riga 1: |
| /* Il codice JavaScript inserito qui viene caricato da ciascuna pagina, per tutti gli utenti. */
| |
|
| |
|
|
| |
|
| |
|
| |
| var customizeToolbar = function() {
| |
| /* Your code goes here */
| |
|
| |
| 'action': {
| |
| 'type': 'encapsulate',
| |
| 'options': {
| |
| 'pre': "",
| |
| 'periMsg': 'wikieditor-toolbar-tool-bold-example',
| |
| 'post': ""
| |
| }
| |
| }
| |
| }
| |
|
| |
| };
| |
|
| |
| /* 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 );
| |
| } );
| |
| }
| |
| } );
| |
| }
| |