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

From TermiKnowledge
Jump to navigation Jump to search
Line 1: Line 1:
if (typeof wfSupportsAjax !== 'undefined' && typeof (SectionCreator) == 'undefined' && wgNamespaceNumber >= 0) {
if (true) {
var SectionCreator = {
var SectionCreator = {
install: function() {
install: function() {

Revision as of 23:09, 1 December 2021

if (true) {
	var SectionCreator = {
		install: function() {
			console.log('aaaaa');
		}
	};
	
	$(function() {
		SectionCreator.install();
	});
}