Difference between revisions of "MediaWiki:Common.js"

(Created page with "Any JavaScript here will be loaded for all users on every page load.: jQuery(document).ready(function ($) { $('#wpTextbox1').wikiEditor('addToToolbar', { ...")
 
Line 8: Line 8:
 
                                 label: 'Comment visible only for editors',
 
                                 label: 'Comment visible only for editors',
 
                                 type: 'button',
 
                                 type: 'button',
                                 icon: '//upload.wikimedia.org/wikipedia/commons/f/f9/Toolbaricon_regular_S_stroke.png',
+
                                 icon: 'Toolbaricon_regular_S_stroke.png',
 
                                 action: {
 
                                 action: {
 
                                         type: 'encapsulate',
 
                                         type: 'encapsulate',

Revision as of 18:26, 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',
                                icon: 'Toolbaricon_regular_S_stroke.png',
                                action: {
                                        type: 'encapsulate',
                                        options: {
                                                pre: "<!-- ",
                                                peri: "Insert comment here",
                                                post: " -->"
                                        }
                                }
                        }
                }
        });
});