Difference between revisions of "MediaWiki:Common.js"
Line 8: | Line 8: | ||
label: 'Comment visible only for editors', | label: 'Comment visible only for editors', | ||
type: 'button', | type: 'button', | ||
− | |||
action: { | action: { | ||
type: 'encapsulate', | type: 'encapsulate', |
Revision as of 18:27, 18 July 2013
/* Any JavaScript here will be loaded for all users on every page load. */
jQuery(document).ready(function ($) {
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
group: 'format',
tools: {
buttonId: {
label: 'Comment visible only for editors',
type: 'button',
action: {
type: 'encapsulate',
options: {
pre: "<!-- ",
peri: "Insert comment here",
post: " -->"
}
}
}
}
});
});