MediaWiki:Common.js: Difference between revisions

Find traditional instrumental music
No edit summary
No edit summary
Line 1: Line 1:
var customizeToolbar = function() {
var customizeToolbar = function() {
 
// TOOLBAR
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
         'sections': {
         'sections': {
Line 7: Line 7:
                         'label': 'Annotations'
                         'label': 'Annotations'
                         // or 'labelMsg': 'section-emoticons-label' for a localized label
                         // or 'labelMsg': 'section-emoticons-label' for a localized label
                }
        }
} );
//GROUP
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'emoticons',
        'groups': {
                'properties': {
                        'label': 'Properties' // or use labelMsg for a localized label, see above
                 }
                 }
         }
         }

Revision as of 15:03, 15 April 2012

var customizeToolbar = function() {
// TOOLBAR
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'sections': {
                'annotations': {
                        'type': 'toolbar', // Can also be 'booklet'
                        'label': 'Annotations'
                        // or 'labelMsg': 'section-emoticons-label' for a localized label
                }
        }
} );

//GROUP
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'emoticons',
        'groups': {
                'properties': {
                        'label': 'Properties' // or use labelMsg for a localized label, see above
                }
        }
} );
        /* Your code goes here */

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