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 */


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
         'section': 'advanced',
         'section': 'advanced',
       'group': 'format',
       'group': 'format',
        'tools': {
                'smile': {
                        label: 'Smile!', // or use labelMsg for a localized label, see above
                        type: 'button',
                        icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: ":)" // text to be inserted
                                }
                        }
                }
        }
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'wikieditor',
      'group': 'tool',
         'tools': {
         'tools': {
                 'smile': {
                 'smile': {

Versione delle 11:38, 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', {
         'section': 'advanced',
       'group': 'format',
        'tools': {
                'smile': {
                        label: 'Smile!', // or use labelMsg for a localized label, see above
                        type: 'button',
                        icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: ":)" // text to be inserted
                                }
                        }
                }
        }
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
         'section': 'wikieditor',
       'group': 'tool',
        'tools': {
                'smile': {
                        label: 'Smile!', // or use labelMsg for a localized label, see above
                        type: 'button',
                        icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: ":)" // text to be inserted
                                }
                        }
                }
        }
} );

$('#wpTextbox1').wikiEditor('removeFromToolbar', {
  'section': 'characters'
});


};
 
/* 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 );
                        } );
                }
        } );
}