MediaWiki:Common.js: differenze tra le versioni
Nessun oggetto della modifica |
Nessun oggetto della modifica |
||
Riga 7: | Riga 7: | ||
/* Your code goes here */ | /* Your code goes here */ | ||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | |||
'sections': { | |||
'emoticons': { | |||
'type': 'toolbar', // Can also be 'booklet' | |||
'label': 'Emoticons' | |||
// or 'labelMsg': 'section-emoticons-label' for a localized label | |||
} | |||
} | |||
} ); | |||
}; | }; |
Versione delle 10:58, 20 giu 2012
/* Il codice JavaScript inserito qui viene caricato da ciascuna pagina, per tutti gli utenti. */ var customizeToolbar = function() { /* Your code goes here */ $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'sections': { 'emoticons': { 'type': 'toolbar', // Can also be 'booklet' 'label': 'Emoticons' // or 'labelMsg': 'section-emoticons-label' for a localized label } } } ); }; /* 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 ); } ); } } ); }