Difference between revisions of "MediaWiki:Gadget-Section creator.js"

From TermiKnowledge
Jump to navigation Jump to search
Line 7: Line 7:
install: function() {
install: function() {
//add bootstrap
//add bootstrap
$.getScript("https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js");
//$.getScript("https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js");
$('head').append( $('<link rel="stylesheet" type="text/css" />').attr('href', 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css') );
//$('head').append( $('<link rel="stylesheet" type="text/css" />').attr('href', 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css') );
var tool = document.getElementById('t-section_creator');
var tool = document.getElementById('t-section_creator');

Revision as of 00:04, 2 December 2021

//single install
const singleInstall = true;

if ((!singleInstall || window.SectionCreator) && mw.config.get('wgNamespaceNumber') >= 0) {
	$(function() {
		var SectionCreator = {
			install: function() {
				//add bootstrap
				//$.getScript("https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js");
				//$('head').append( $('<link rel="stylesheet" type="text/css" />').attr('href', 'https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css') );
				
				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();
	});
}