MediaWiki:Common.js: differenze tra le versioni

Nessun oggetto della modifica
Nessun oggetto della modifica
Riga 1: Riga 1:
/* Il codice JavaScript inserito qui viene caricato da ciascuna pagina, per tutti gli utenti. */
/* Il codice JavaScript inserito qui viene caricato da ciascuna pagina, per tutti gli utenti. */
var customizeToolbar = function() {
        /* Your code goes here */




Riga 40: Riga 47:




var customizeToolbar = function() {
 
        /* Your code goes here */
 
   'action': {
   'action': {
       'type': 'encapsulate',
       'type': 'encapsulate',
Riga 51: Riga 58:
       }
       }
   }
   }


};
};

Versione delle 10:51, 20 giu 2012

/* Il codice JavaScript inserito qui viene caricato da ciascuna pagina, per tutti gli utenti. */




var customizeToolbar = function() {
        /* Your code goes here */



jQuery(document).ready(function ($) {
        $('#wpTextbox1').wikiEditor('addToToolbar', {
                section: 'advanced',
                group: 'format',
                tools: {
                        buttonId: {
                                label: 'Comment visible only for editors',
                                type: 'button',
                                icon: '//upload.wikimedia.org/wikipedia/commons/f/f9/Toolbaricon_regular_S_stroke.png',
                                action: {
                                        type: 'encapsulate',
                                        options: {
                                                pre: "<!-- ",
                                                peri: "Insert comment here",
                                                post: " -->"
                                        }
                                }
                        }
                }
        });
});

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

   $( function() {
             if ( typeof $.fn.wikiEditor != 'undefined' ) {
                   $( '#wpTextbox1' ).wikiEditor( 'removeFromToolbar', {
                          'section': 'characters',
                   });
             }
        });







  '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 );
                        } );
                }
        } );
}