Mabinogi World Wiki is brought to you by Coty C., 808idiotz, our other patrons, and contributors like you!!
Want to make the wiki better? Contribute towards getting larger projects done on our Patreon!

MediaWiki:Common.js

From Mabinogi World Wiki

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// importX
function importPage(name, type) {
	return mw.loader.load( '/index.php?title=' + name + '&action=raw&ctype=' + type, type );
}

function importScript(name) { return importPage(name, 'text/javascript'); }
function importStylesheet(name) { return importPage(name, 'text/css'); }

// Toggler buttons
jQuery(function($) {
	$(".toggler").each(function() {
		var $this = $(this);
		$this.click(togglerClick.bind($this));
		if (!$this.hasClass("toggler-on") && !$this.hasClass("toggler-off")){
			$this.addClass("toggler-off");
		}
		if ($this.hasClass("start-on")) $this.click();
	});
});

function togglerClick() {
	var $this = this, found = false;
	var classes = $this.attr("class");

	classes.replace(/toggle-([\w\d\-]+)/g, function (_, target) {
		found = true;

		var $target = $("." + target);
		var action = classes.match(/action-(\w+)(-(\w+))?/), arg;

		if (action) {
			arg = action[3] || "";
			action = action[1];
		} else {
			action = "collapse";
		}

		switch(action) {
			case "opacity":
				var isOn = $target.css("opacity") != "1";
				$target.css("opacity", isOn ? "1" : (parseInt(arg) / 100).toString());
				break;
			case "hide":
				var isOn = $target.css("visibility") != "visible";
				$target.css("visibility", isOn ? "visible" : "hidden");
				break;
			case "collapse":
				$target.toggle();
				break;
			default:
				console.warn("Toggler error: Action", action, "is not known.");
				return;
		}
	});

	if (found) {
		$this.toggleClass("toggler-on");
		$this.toggleClass("toggler-off");
	} else {
		console.warn("Toggler error: Toggler must have a target defined with toggle-CLASS", this);
	}
}

// Parking content box handling
jQuery(function($) {
	$(".parking").each(function() {
		var $this = $(this);
		$this.data("position", $this.css("position"));
		$this.data("top", $this.offset().top);
	});
	$(window).bind("scroll resize", function(){
		var scrollTop = $(window).scrollTop();
		$(".parking").each(function() {
			var $this = $(this);
			if (scrollTop >= $this.data("top") && scrollTop !== 0) {
				$this.css("position", "fixed");
			} else {
				$this.css("position", $this.data("position"));
			}
		});
	});
});

// Add mini link near page titles.
jQuery(function($) {
	var $img = $("<img>").attr({
		"alt": "mini",
		"title": "link here!",
		"src": "/skins/common/images/mw/mini.png"
	}).css({
		"margin-bottom": "3px",
	})

	if(mw.config.exists("wgArticleId") && mw.config.get("wgArticleId") != "0") {
		$("<a>").css({
			"margin-left": "10px",
			"font-size": "12px"
		}).attr("href", "//mabi.world/w" + mw.config.get("wgArticleId").toString(36))
		.append($img.css({
			"vertical-align": "text-bottom",
		}))
		.appendTo(".firstHeading");
	}

	var $mwftt = $(".mw-wikiforum-thread-top");
	if($mwftt.length > 0) {
		var threadNum = $mwftt.text().replace("[#", "").replace("]", "");
		$('<a>')
		.attr("href", "//mabi.world/D" + parseInt(threadNum).toString(36))
		.text("[#" + threadNum + "]")
		.append($img)
		.appendTo($mwftt.empty());
	}
});

jQuery(function($) {
	return function() {
		$('.tabdiv > div').hide();
		$('.tabdiv').each(function() {
			$(this).find('> ul li').addClass('inactive');
			$(this).find('> ul li:first').removeClass('inactive');
			$(this).find('> ul li:first').addClass('active');
			$(this).find('> div:first').show();
		});
	 	$('.tabdiv > ul li').each(function() {
			var a = $(this).find('a:first');
			var target = a.attr('href');
			$(a).attr('href', ''); // Opera hates real hrefs
			$(this).click(function() {
				$(this).parent().find('> li').removeClass('active');
				$(this).parent().find('> li').addClass('inactive');
				$(this).parent().parent().find('> div').hide();
				$(this).addClass('active');
				$(this).removeClass('inactive');
				$(target).show();
				return false;
			});
		});
	}
}(jQuery));

// Collapse multiple references (click to expand)
jQuery(function($) {
    $(".mw-cite-backlink:has(sup)").each(function() {
        var $this = $(this);
        var $sups = $this.find("sup").hide();
        var $arrow = $this.contents().first().detach();
        $this.prepend(document.createTextNode(" "));
        
        $("<span>")
        .css({
            "cursor": "pointer",
            "color": "blue",
            "text-decoration": "underline",
        })
        .click(function () { $sups.toggle() })
        .text($arrow.text().trim())
        .prependTo($this);
    });
}(jQuery));

/** Collapsible tables *********************************************************
 *
 *  Description: Allows tables to be collapsed, showing only the header. See
 *               [[Wikipedia:NavFrame]].
 *  Maintainers: [[User:R. Koot]]
 */
 
var autoCollapse = 2;
var collapseCaption = "hide";
var expandCaption = "show";
 
function collapseTable( tableIndex )
{
    var Button = document.getElementById( "collapseButton" + tableIndex );
    var Table = document.getElementById( "collapsibleTable" + tableIndex );
 
    if ( !Table || !Button ) {
        return false;
    }
 
    var Rows = Table.rows;
 
    if ( Button.firstChild.data == collapseCaption ) {
        for ( var i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = "none";
        }
        Button.firstChild.data = expandCaption;
    } else {
        for ( var i = 1; i < Rows.length; i++ ) {
            Rows[i].style.display = Rows[0].style.display;
        }
        Button.firstChild.data = collapseCaption;
    }
}

/* Test if an element has a certain class **************************************
 *
 * Description: Uses regular expressions and caching for better performance.
 * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]]
 */
 
var hasClass = ( function() {
        var reCache = {};
        return function( element, className ) {
                return ( reCache[className] ? reCache[className] : ( reCache[className] = new RegExp( "(?:\\s|^)" + className + "(?:\\s|$)" ) ) ).test( element.className );
        };
})();
 
function createCollapseButtons()
{
    var tableIndex = 0;
    var NavigationBoxes = new Object();
    var Tables = document.getElementsByTagName( "table" );
 
    for ( var i = 0; i < Tables.length; i++ ) {
        if ( hasClass( Tables[i], "collapsible" ) ) {
 
            /* only add button and increment count if there is a header row to work with */
            var HeaderRow = Tables[i].getElementsByTagName( "tr" )[0];
            if (!HeaderRow) continue;
            var Header = HeaderRow.getElementsByTagName( "th" )[0];
            if (!Header) continue;
 
            NavigationBoxes[ tableIndex ] = Tables[i];
            Tables[i].setAttribute( "id", "collapsibleTable" + tableIndex );
 
            var Button     = document.createElement( "span" );
            var ButtonLink = document.createElement( "a" );
            var ButtonText = document.createTextNode( collapseCaption );
 
            Button.style.styleFloat = "right";
            Button.style.cssFloat = "right";
            Button.style.fontWeight = "normal";
            Button.style.textAlign = "right";
            Button.style.width = "auto";
            Button.className = "collapseButton";  /* Khenta Edit */ //Styles are declared in Common.css 
            ButtonLink.style.color = Header.style.color;
            ButtonLink.setAttribute( "id", "collapseButton" + tableIndex );
            ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + ");" );
            ButtonLink.appendChild( ButtonText );
 
            Button.appendChild( document.createTextNode( "[" ) );
            Button.appendChild( ButtonLink );
            Button.appendChild( document.createTextNode( "]" ) );
 
            Header.insertBefore( Button, Header.childNodes[0] );
            tableIndex++;
        }
    }
 
    for ( var i = 0;  i < tableIndex; i++ ) {
        if ( hasClass( NavigationBoxes[i], "collapsed" ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], "autocollapse" ) ) ) {
            collapseTable( i );
        } 
        else if ( hasClass( NavigationBoxes[i], "innercollapse" ) ) {
            var element = NavigationBoxes[i];
            while (element = element.parentNode) {
                if ( hasClass( element, "outercollapse" ) ) {
                    collapseTable ( i );
                    break;
                }
            }
        }
    }
}
 
jQuery( createCollapseButtons );
 
 
/** Dynamic Navigation Bars (experimental) *************************************
 *
 *  Description: See [[Wikipedia:NavFrame]].
 *  Maintainers: UNMAINTAINED
 */
 
// set up the words in your language
var NavigationBarHide = '[' + collapseCaption + ']';
var NavigationBarShow = '[' + expandCaption + ']';
 
// shows and hides content and picture (if available) of navigation bars
// Parameters:
//     indexNavigationBar: the index of navigation bar to be toggled
function toggleNavigationBar(indexNavigationBar)
{
    var NavToggle = document.getElementById("NavToggle" + indexNavigationBar);
    var NavFrame = document.getElementById("NavFrame" + indexNavigationBar);
 
    if (!NavFrame || !NavToggle) {
        return false;
    }
 
    // if shown now
    if (NavToggle.firstChild.data == NavigationBarHide) {
        for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
            if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) {
                NavChild.style.display = 'none';
            }
        }
    NavToggle.firstChild.data = NavigationBarShow;
 
    // if hidden now
    } else if (NavToggle.firstChild.data == NavigationBarShow) {
        for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
            if (hasClass(NavChild, 'NavContent') || hasClass(NavChild, 'NavPic')) {
                NavChild.style.display = 'block';
            }
        }
        NavToggle.firstChild.data = NavigationBarHide;
    }
}
 
// adds show/hide-button to navigation bars
function createNavigationBarToggleButton()
{
    var indexNavigationBar = 0;
    // iterate over all < div >-elements 
    var divs = document.getElementsByTagName("div");
    for (var i = 0; NavFrame = divs[i]; i++) {
        // if found a navigation bar
        if (hasClass(NavFrame, "NavFrame")) {
 
            indexNavigationBar++;
            var NavToggle = document.createElement("a");
            NavToggle.className = 'NavToggle';
            NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar);
            NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');');
 
            var isCollapsed = hasClass( NavFrame, "collapsed" );
            /*
             * Check if any children are already hidden.  This loop is here for backwards compatibility:
             * the old way of making NavFrames start out collapsed was to manually add style="display:none"
             * to all the NavPic/NavContent elements.  Since this was bad for accessibility (no way to make
             * the content visible without JavaScript support), the new recommended way is to add the class
             * "collapsed" to the NavFrame itself, just like with collapsible tables.
             */
            for (var NavChild = NavFrame.firstChild; NavChild != null && !isCollapsed; NavChild = NavChild.nextSibling) {
                if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) {
                    if ( NavChild.style.display == 'none' ) {
                        isCollapsed = true;
                    }
                }
            }
            if (isCollapsed) {
                for (var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling) {
                    if ( hasClass( NavChild, 'NavPic' ) || hasClass( NavChild, 'NavContent' ) ) {
                        NavChild.style.display = 'none';
                    }
                }
            }
            var NavToggleText = document.createTextNode(isCollapsed ? NavigationBarShow : NavigationBarHide);
            NavToggle.appendChild(NavToggleText);
 
            // Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked)
            for(var j=0; j < NavFrame.childNodes.length; j++) {
                if (hasClass(NavFrame.childNodes[j], "NavHead")) {
                    NavFrame.childNodes[j].appendChild(NavToggle);
                }
            }
            NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar);
        }
    }
}
 
jQuery( createNavigationBarToggleButton );

/* Mouse-over boxes (Work-in-progress) */
jQuery(function($) {
	var $affectedSpans = $(".mouseover-wrapper");

	$affectedSpans.each(function () {
		var $this = $(this);

		var $custom = $this.children(".mouseover-custom");

		$this.data({
			"lock": false,

			"style": $custom.children(".mouseover-custom-fade-style").text(),
			"anchor": parseInt($custom.children(".mouseover-custom-anchor").text() || 9),
			"modx": parseInt($custom.children(".mouseover-custom-modx").text() || 0),
			"mody": parseInt($custom.children(".mouseover-custom-mody").text() || 0),
			"fade-length": parseFloat($custom.children(".mouseover-custom-fade-length").text() || 200.0),
		});

		$this.children(".mouseover-content").hide();

		$this.click(mouseoverbox_open);

		$this.mousemove(mouseoverbox_move);
		$this.mouseout(mouseoverbox_out);
	});

	$("body").click(mouseoverboxes_close)
});

function get_largest_dims(elem, filter) {
	var $elem = $(elem), $ret = $elem, width = 0, height = 0;
	$elem.add($elem.find(filter || "*"))
		.filter(function () {
			var $this = $(this)
			var w = $this.width(), h = $this.height();
			if (w*h > width*height) {
				width = w;
				height = h;
				$ret = $this;
			}
		});
	return $ret;
}

function mouseoverbox_open(ev) {
	var $this = $(this);

	var x, y;
	var modx = $this.data("modx"), mody = $this.data("mody");

	var $largest = get_largest_dims($this, ".mouseover-trigger, .mouseover-trigger *");
	var pos = $largest.offset();
	var triggerWidth = $largest.width();
	var triggerHeight = $largest.height();

	var left = pos.left, top = pos.top;
	var center = left + triggerWidth / 2, middle = top + triggerHeight / 2;
	var right = left + triggerWidth, bottom = top + triggerHeight;

	mouseoverboxes_close();

	var $content = mouseoverbox_show($this);

	$this.data("lock", true);

	var $clargest = get_largest_dims($content);
	var width = $clargest.width();
	var height = $clargest.height();

	switch ($this.data("anchor")) {
		case 1:
			// Bottom-right of content to top-right of trigger.
			x = right - width + modx;
			y = top - height + (mody || -10);
			break;
		case 2:
			// Bottom-center of content to top-center of trigger.
			x = center - width / 2 + modx;
			y = top - height + (mody || -10);
			break;
		case 3:
			// Bottom-left of content to top-left of trigger.
			x = left + modx;
			y = top - height + (mody || -10);
			break;
		case 4:
			// Middle-right of content to middle-left of trigger.
			x = left - width + (modx || -10);
			y = middle - height / 2 + mody;
			break;
		case 5:
			// Middle-center of content to middle-center of trigger.
			x = center - width / 2 + modx;
			y = middle - height / 2 + mody;
			break;
		case 6:
			// Middle-left of content to middle-right of trigger.
			x = right + (modx || 10);
			y = middle - height / 2 + mody;
			break;
		case 7:
			// Top-right of content to bottom-right of trigger.
			x = right - width + modx;
			y = bottom + (mody || 10);
			break;
		case 8:
			// Top-center of content to bottom-center of trigger.
			x = center - width / 2 + modx;
			y = bottom + (mody || 10);
			break;
		case 9:
		default:
			// Top-left of content to bottom-left of trigger.
			x = left + modx;
			y = bottom + (mody || 20);
			break;
	}

	$content.offset({
		"top": y,
		"left": x,
	});

	ev.stopPropagation();
}

function mouseoverboxes_close() {
	$(".mouseover-content:visible").each(function () {
		var $this = $(this).parent();

		mouseoverbox_hide($this);
		$this.data("lock", false);
	})
}

function mouseoverbox_show($this) {
	var $content = $this.find(".mouseover-content");

	$content
		.stop()
		.attr("style", $this.data("style"))
		.css({
			"position": "absolute",
			"opacity": "0"
		})
		.show();

	$content.animate({
		"opacity": "1",
	}, {
		"duration": $this.data("fade-length"),
	});

	return $content;
}

function mouseoverbox_move(ev) {
	var $this = $(this);
	var $content = $this.find(".mouseover-content");

	if ($this.data("lock")) return;

	// If we're over the content and it moved out, close.
	if (mouseoverbox_movedout($this, ev)) {
		mouseoverbox_hide($this);
		return;
	} else if (!$content.is(":visible")) {
		mouseoverbox_show($this)
	}

	var x, y;
	var modx = $this.data("modx"), mody = $this.data("mody");

	var $largest = get_largest_dims($content);
	var width = $largest.width();
	var height = $largest.height();

	switch ($this.data("anchor")) {
		case 1:
			y = (mody || -10) - height;
			x = (modx || -10) - width;
			break;
		case 2:
			y = (mody || -10) - height;
			x = modx - width / 2;
			break;
		case 3:
			y = (mody || -10) - height;
			x = (modx || 10);
			break;
		case 4:
			y = mody - height / 2;
			x = (modx || -10) - width;
			break;
		case 5:
			y = mody - height / 2;
			x = modx - width / 2;
			break;
		case 6:
			y = mody - height / 2;
			x = (modx || 10);
			break;
		case 7:
			y = (mody || 10);
			x = (modx || -10) - width;
			break;
		case 8:
			y = (mody || 10);
			x = modx - width / 2;
			break;
		case 9:
		default:
			y = (mody || 20);
			x = (modx || -1);
			break;
	}

	$content.offset({
		"top": ev.pageY + y,
		"left": ev.pageX + x,
	});
}

function mouseoverbox_movedout($this, ev) {
	var $trigger = $this.find(".mouseover-trigger");

	var $largest = get_largest_dims($trigger);
	var pos = $largest.offset();
	var width = $largest.width();
	var height = $largest.height();

	var x = ev.pageX, y = ev.pageY;

	return x < pos.left || x > pos.left + width
		|| y < pos.top || y > pos.top + height;
}

function mouseoverbox_out(ev) {
	var $this = $(this);

	if ($this.data("lock")) return;

	if (event.relatedTarget && event.relatedTarget.parentNode == this) {
		// Make sure we're still in the bounding box.
		if (!mouseoverbox_movedout($this, ev)) {
			return;
		}
	}
	
	mouseoverbox_hide($this);
}

function mouseoverbox_hide($this) {
	var $content = $this.find(".mouseover-content");

	$content.animate({
		"opacity": "0",
	}, {
		"duration": $this.data("fade-length"),
		"complete": function () { $content.hide() },
	});
}

/* Remove paragraphs in any object that has a class named "no-para" */
function removeParas()
{
	var affectedEs = document.getElementsByClassName("no-para"); // E for Element

	var Ps = null;
	var parent = null;
	var dummyNode = null;
	for (i = 0; i < affectedEs.length; i++)
	{
		Ps = affectedEs[i].getElementsByTagName("p");
		do
		{
			parent = Ps[0].parentNode;
			dummyNode = document.createElement("span");
			dummyNode.innerHTML = Ps[0].innerHTML;
			parent.replaceChild(dummyNode, Ps[0]);
		} while (Ps.length != 0);
	}
}
jQuery(removeParas);

/* Fixes the extra whitespace at the end (if there is one) */
function divPreFix()
{
	var Es = document.getElementsByClassName("pre"); // E for Element
	for (i = 0; i < Es.length; i++)
		if (Es[i].tagName == "DIV") // Make sure it is a div tag
			if (Es[i].lastChild.textContent == "\n") // Check for the whitespace
				Es[i].removeChild(Es[i].lastChild);
}
jQuery(divPreFix);

// Searches a set of CSS classes for links which have css class "new" and
// changes them into the upload image.
var convertRedImageLinksToNotFoundImage = function($) {
    return function() {
        // Div classes in which we search for image links
        var convertibleDivClasses = [
            'imagetable', 'image'
        ];
        $.each(convertibleDivClasses, function(_, cssClass) {
            var $links = $('.' + cssClass + ' a.new[href*="Special:Upload"]');
            $links.html('<img src="//wiki.mabinogiworld.com/images/f/f0/No_File.png" />');
        });
    }
}(jQuery);
jQuery(convertRedImageLinksToNotFoundImage);


jQuery.fn.reverse = Array.prototype.reverse;
// Scroll to hidden sections on the wiki
function doScrollPage() {
	if (location.hash && location.hash.length > 1) {
		var $x = $(location.hash + ', a[name="' + location.hash.substr(1) + '"]');
		if (!$x.is(":visible")) {
			var parents = $x.parents(".NavContent");
			if (parents.length) {
				// Spoiler tag.
				parents.reverse().each(function () {
					var $this = $(this);
					if (!$this.is(":visible")) {
						toggleNavigationBar(parseInt($this.parent().children(".NavHead").children(".NavToggle").attr("id").substr(9)));
					}
				});
			} else if ((parents = $x.parents(".tabdiv")).length) {
				// Tabs.
				$x.parents('div[id*="tab"]').each(function () {
					var $this = $(this);
					$this.parent(".tabdiv").children("ul").children("li:nth-child(" + $(this).attr("id").replace(/^.*tab/,'') + ")").click() 
				});
			}
		}
		$("html,body").scrollTop($x.offset().top)
	}
}
jQuery(doScrollPage);

// Collapse table cells if they're the same (for auto generating skill tables and stuff)
function collapseTableCells($) {
	$("tr.collapse-cols-if-same").each(function () {
		var colIs = $(this).attr("data-col-is");
		var $row = $(this), $prev, prev = "", count = 0;
		$row.children("td").each(function () {
			var $td = $(this);
			var text = $td.text().trim();
			if (!colIs || text === colIs) {
				if (prev && text === prev) {
					++count;
					$td.remove();
				} else {
					if (count > 1) {
						$prev.attr("colspan", count);
					}
					$prev = $td;
					prev = text;
					count = 1;
				}
			}
		});
		if (count > 1) {
			$prev.attr("colspan", count);
		}
	});

	$("table:has(.collapse-rows-if-same)").each(function () {
		var $prev, prev = "", count = 0;
		$(this).find("tr .collapse-rows-if-same").each(function () {
			var $td = $(this);
			var text = $td.text().trim();
			if (prev && text === prev) {
				++count;
				$td.remove();
			} else {
				if (count > 1) {
					$prev.attr("rowspan", count);
				}
				$prev = $td;
				prev = text;
				count = 1;
			}
		});
		if (count > 1) {
			$prev.attr("rowspan", count);
		}
	});
}
jQuery(collapseTableCells);

jQuery.cachedScript = function( url, options ) {

  // Allow user to set any option except for dataType, cache, and url
  options = $.extend( options || {}, {
    dataType: "script",
    cache: true,
    url: url
  });


  // Use $.ajax() since it is more flexible than $.getScript
  // Return the jqXHR object so we can chain callbacks
  return jQuery.ajax( options );
};

var onloadHash = location.hash;
jQuery.cachedScript('//mabi.world/jquery.ba-hashchange.js').done(function () {
	jQuery(window).hashchange(doScrollPage);
	if (onloadHash != location.hash) doScrollPage();
});

// don't load the calc system unless it will actually do something
if ($(".calc-scope").length > 0) {
    importScript('MediaWiki:CalcSystem.js');
}

var weatherWidget = $(".weather-widget-rain-summary, .weather-widget-hour, .weather-widget").length > 0;
var timerWidget = $(".make-timer, .time-erinn-current, .time-server-current").length > 0;

if (weatherWidget || timerWidget) {
    jQuery.cachedScript('//mabi.world/moment.js').done(function () {
        jQuery.cachedScript('//mabi.world/moment-timezone-with-data.js').done(function () {
            jQuery.cachedScript('//mabi.world/widgets.js').done(function () {
                if (weatherWidget) {
                    jQuery.cachedScript('https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js').done(function () {
                        jQuery.cachedScript('//mabi.world/forecast.js');
                        importStylesheet('MediaWiki:Forecast.css');
                    });
                }
                if (timerWidget) {
                    jQuery.cachedScript('//mabi.world/timers.js');
                    importStylesheet('MediaWiki:Timers.css');
                }
            })
        })
    });
}

jQuery(function () {
    importScript('MediaWiki:Toolbar.js');
});

jQuery(function ($) {
    switch ($("#LoadFormScript").text()) {
    case "Enchant": importScript("MediaWiki:EnchantForm.js"); break;
    case "Title": importScript("MediaWiki:TitleForm.js"); break;
    }
});