MediaWiki:Common.js: differenze tra le versioni

Nessun oggetto della modifica
Nessun oggetto della modifica
 
(2 versioni intermedie di uno stesso utente non sono mostrate)
Riga 7: Riga 7:
         /* Your code goes here */
         /* Your code goes here */


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
         'sections': {
        'section': 'advanced',
                 'emoticons': {
      'group': 'format',
                         'type': 'toolbar', // Can also be 'booklet'
         'tools': {
                         'label': 'Emoticons'
                 'smile': {
                         // or 'labelMsg': 'section-emoticons-label' for a localized label
                         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
                                }
                        }
                 }
                 }
         }
         }
Riga 18: Riga 26:


$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
      /* 'section': 'emoticons', */
        'section': 'main',
      /* 'group': 'faces', */
       'group': 'insert',
      'section': 'advanced',
       'group': 'format',
         'tools': {
         'tools': {
                 'smile': {
                 'smile': {

Versione attuale delle 11:42, 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': 'main',
       'group': 'insert',
        '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 );
                        } );
                }
        } );
}