Difference between revisions of "MediaWiki:Common.js"

(Replaced content with "Any JavaScript here will be loaded for all users on every page load.: ")
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* 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: " -->"
 
                                        }
 
                                }
 
                        }
 
                }
 
        });
 
});
 

Revision as of 18:27, 18 July 2013

/* Any JavaScript here will be loaded for all users on every page load. */