MediaWiki

Common.js

From Dogcraft Wiki

m (Undo revision 13479 by Domino (talk))
Tag: Undo
m (Undo revision 13478 by Domino (talk))
Tag: Undo
Line 28: Line 28:
pagePcactions = document.getElementById("p-cactions");
pagePcactions = document.getElementById("p-cactions");
if (wgNamespaceNumber == "Main")  
if (document.wgNamespaceNumber == 0)  
{
{
pagePcactions.insertBefore(mainNamespaceMarker,pageContentDiv);
pagePcactions.insertBefore(mainNamespaceMarker,pageContentDiv);

Revision as of 00:47, 3 December 2020

/* Any JavaScript here will be loaded for all users on every page load. */

/* Navigation Popups */
/* Currently Disabled
mw.loader.load('/load.php?modules=ext.gadget.Navigation_popups');
window.popupAdminLinks = false;
window.popupActionsMenu = false;
window.popupStructure = 'lite';
window.popupSubpopups = false;
window.popupSummaryData = false;
*/

$(document).ready(function() {
	var goToDogcraft = document.querySelectorAll("#p-Go_to_Dogcraft > a");
	goToDogcraft[0].setAttribute("href", "//dogcraft.net");
	
	var indicator = document.querySelectorAll(".mw-indicators");
	var indicator1 = indicator[0];
	
	if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
	
	var mainNamespaceMarker = document.createElement("h4");
	mainNamespaceMarker.classList.add("namespace");
	mainNamespaceMarker.classList.add("label");
	mainNamespaceMarker.textContent = "Main";
	
	var	pageContentDiv = document.getElementById("content"),
		pagePcactions = document.getElementById("p-cactions");
		
	if (document.wgNamespaceNumber == 0) 
		{
			pagePcactions.insertBefore(mainNamespaceMarker,pageContentDiv);
		}
	
});
This page was last modified on 3 December 2020, at 00:47. (40 days ago)