MediaWiki:Common.js: Difference between revisions

Find traditional instrumental music
No edit summary
No edit summary
Line 78: Line 78:


   var myElement = document.getElementById('mw-abc-notation');
   var myElement = document.getElementById('mw-abc-notation');
   myElement.innerHTML = '<html>ABC Notation</html>';
   myElement.innerHTML =  
'<html>
<head>
</head>
<body>
ABC Notation
</body>
</html>';


}());
}());

Revision as of 08:20, 24 May 2017

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': 'annotations',
        'groups': {
                'properties': {
                        'label': 'Properties' // or use labelMsg for a localized label, see above
                }
        }
} );

//BUTTONS        
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'annotations',
        'group': 'properties',
        'tools': {
                'aka': {
                        label: 'Is also know as', // or use labelMsg for a localized label, see above
                        type: 'button',
                        icon: 'http://tunearch.org/w/images/1334499686_stock_folder-move.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "[[Is_also_known_as::",
                                        post: "]]"
                                }
                        }
                }
        }
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
        'section': 'annotations',
        'group': 'properties',
        'tools': {
              'appears': {
                        label: 'Appears in', // or use labelMsg for a localized label, see above
                        type: 'button',
                        icon: 'http://tunearch.org/w/images/741-32x32x32.png',
                        action: {
                                type: 'encapsulate',
                                options: {
                                        pre: "[[Appears_in::",
                                        post: "]]"
                                }
                        }
                }
        }
} );

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

(function () {

  var myElement = document.getElementById('mw-abc-notation');
  myElement.innerHTML = 
'<html>
<head>
</head>
<body>
ABC Notation
</body>
</html>';

}());