Difference between revisions of "MediaWiki:Common.js"

From SCI Wiki
Jump to navigationJump to search
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: jQuery(document).ready(function ($) { $('#wpTextbox1').wikiEditor('addToToolbar', { ...")
 
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 ($) {
+
/* jQuery(document).ready(function ($) {
 
         $('#wpTextbox1').wikiEditor('addToToolbar', {
 
         $('#wpTextbox1').wikiEditor('addToToolbar', {
 
                 section: 'advanced',
 
                 section: 'advanced',
Line 21: Line 21:
 
                 }
 
                 }
 
         });
 
         });
});
+
}); */

Revision as of 21:41, 1 September 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: '//upload.wikimedia.org/wikipedia/commons/f/f9/Toolbaricon_regular_S_stroke.png',
                                action: {
                                        type: 'encapsulate',
                                        options: {
                                                pre: "<!-- ",
                                                peri: "Insert comment here",
                                                post: " -->"
                                        }
                                }
                        }
                }
        });
}); */