MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
Line 30: | Line 30: | ||
label: 'blockhanja', | label: 'blockhanja', | ||
type: 'button', | type: 'button', | ||
icon: '// | icon: '//michaelhan.net/private/assets/tag-blockhanja.png', | ||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', |
Revision as of 20:04, 2 July 2016
/* Any JavaScript here will be loaded for all users on every page load. */
// added for customizing WikiEditor toolbar
var customizeToolbar = function() {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'sections': {
'customtags': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'Custom tags'
// or 'labelMsg': 'section-emoticons-label' for a localized label
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'customtags',
'groups': {
'faces': {
'label': 'Tags' // or use labelMsg for a localized label, see above
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'customtags',
'group': 'faces',
'tools': {
'blockhanja': {
label: 'blockhanja',
type: 'button',
icon: '//michaelhan.net/private/assets/tag-blockhanja.png',
action: {
type: 'encapsulate',
options: {
pre: '<span class="blockhanja">',
post: '</span>'
}
}
}
}
} );
};
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
mw.loader.using( 'user.options', function () {
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
$.when(
mw.loader.using( 'ext.wikiEditor.toolbar' ), $.ready
).then( customizeToolbar );
}
} );
}
// Add the customizations to LiquidThreads' edit toolbar, if available
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );