MediaWiki:Common.js: differenze tra le versioni
Nessun oggetto della modifica |
Nessun oggetto della modifica |
||
Riga 6: | Riga 6: | ||
var customizeToolbar = function() { | var customizeToolbar = function() { | ||
/* Your code goes here */ | /* Your code goes here */ | ||
'action': { | 'action': { | ||
Riga 60: | Riga 16: | ||
} | } | ||
} | } | ||
}; | }; |
Versione delle 10:53, 20 giu 2012
/* 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 ); } ); } } ); }