MediaWiki
Common.js
From Dogcraft Wiki
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
var indicator = document.querySelectorAll(".mw-indicators"); | var indicator = document.querySelectorAll(".mw-indicators"); | ||
if (indicator[ | if (indicator[0].childNodes.length !== null) | ||
{ | { | ||
document.getElementById("tagline").innerHTML = indicator[0].innerHTML; | document.getElementById("tagline").innerHTML = indicator[0].innerHTML; | ||
} | } | ||
}); | }); |
Revision as of 22:55, 3 October 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");
if (indicator[0].childNodes.length !== null)
{
document.getElementById("tagline").innerHTML = indicator[0].innerHTML;
}
});
This page was last modified on 3 October 2020, at 22:55. (2 months ago)