Difference between revisions of "MediaWiki:Gadget-Section creator.js"
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
var SectionCreator = { | var SectionCreator = { | ||
install: function() { | install: function() { | ||
var tool = document.getElementById('t-section_creator'); | var tool = document.getElementById('t-section_creator'); | ||
if (tool) tool.parentNode.removeChild(tool); | if (tool) tool.parentNode.removeChild(tool); |
Revision as of 10:38, 2 December 2021
//single install const singleInstall = false; if ((!singleInstall || window.SectionCreator) && mw.config.get('wgNamespaceNumber') >= 0) { $(function() { var SectionCreator = { install: function() { var tool = document.getElementById('t-section_creator'); if (tool) tool.parentNode.removeChild(tool); //set up toolbox link mw.util.addPortletLink('p-tb', 'javascript:SectionCreator.shout();', "Create section", 't-section_creator', null); console.log('Section creator installed'); }, shout: function() { console.log('aaaaa'); } }; window.SectionCreator = SectionCreator; SectionCreator.install(); }); }