MediaWiki

Common.js

From Dogcraft Wiki

No edit summary
No edit summary
Line 20: Line 20:
if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
$("#alertbutton-domino").click(function(){
/*$("#alertbutton-domino").click(function(){
mw.notify( mw.message( 'sandbox-test' ) );
mw.notify( mw.message( 'sandbox-test' ) );
});
});*/
});
});

Revision as of 15:18, 27 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;}
	
	/*$("#alertbutton-domino").click(function(){
		mw.notify( mw.message( 'sandbox-test' ) );
	});*/
		
});
This page was last modified on 27 December 2020, at 15:18. (5 months ago)