MediaWiki:Common.js: differenze tra le versioni
Nessun oggetto della modifica |
Nessun oggetto della modifica |
||
Riga 21: | Riga 21: | ||
var customizeToolbar = function() { | var customizeToolbar = function() { | ||
/* Your code goes here */ | /* Your code goes here */ | ||
'action': { | |||
'type': 'encapsulate', | |||
'options': { | |||
'pre': "", | |||
'periMsg': 'wikieditor-toolbar-tool-bold-example', | |||
'post': "" | |||
} | |||
} | |||
} | |||
}; | }; |
Versione delle 10:38, 20 giu 2012
/* Il codice JavaScript inserito qui viene caricato da ciascuna pagina, per tutti gli utenti. */ $('#wpTextbox1').wikiEditor('removeFromToolbar', { 'section': 'characters' }); $( function() { if ( typeof $.fn.wikiEditor != 'undefined' ) { $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', { 'section': 'characters', }); } }); 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 ); } ); } } ); }