MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
Line 83: | Line 83: | ||
</head> | </head> | ||
<body> | <body> | ||
ABC Notation | ABC Notation is cool!!! | ||
</body> | </body> | ||
</html>'; | </html>'; | ||
}()); | }()); |
Revision as of 08:21, 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 is cool!!!
</body>
</html>';
}());