MediaWiki:Common.js: Difference between revisions

From Comprehensible Input Wiki
Content added Content deleted
No edit summary
No edit summary
Line 4: Line 4:
if(window.location.hostname == 'comprehensibleinput.miraheze.org'){
if(window.location.hostname == 'comprehensibleinput.miraheze.org'){
currentUrl = new RegExp("(^.*)" + window.location.hostname + "(.*$)", 'g').exec(window.location);
document.querySelector("#popupLink").lastElementChild.click()
newUrl = currentUrl[1] + "comprehensibleinputwiki.org" + currentUrl[2];
$('#bodyContent').prepend('<div id="redirectPopup" style="display:none">New URL! Go to <a href="' + newUrl + '">comprehensibleinputwiki.org</a></div>');
var timeleft = 5000;
document.querySelector('#redirectPopup').style.display="block"
var redirectTimer = setInterval(function(){
if(timeleft <= 0){
clearInterval(redirectTimer);
window.location.hostname='comprehensibleinputwiki.org'
}
document.getElementById("countdown").innerHTML = Math.ceil(timeleft/1000);
timeleft -= 100;
}, 100);
}
}

});
});

Revision as of 22:53, 26 January 2023

/* Any JavaScript here will be loaded for all users on every page load. */
//Wait for page to be parsed
$(document).ready( function () {
	if(window.location.hostname == 'comprehensibleinput.miraheze.org'){
		
		currentUrl = new RegExp("(^.*)" + window.location.hostname + "(.*$)", 'g').exec(window.location);
		newUrl = currentUrl[1] + "comprehensibleinputwiki.org" + currentUrl[2];
		
		$('#bodyContent').prepend('<div id="redirectPopup" style="display:none">New URL! Go to <a href="' + newUrl + '">comprehensibleinputwiki.org</a></div>');
		document.querySelector('#redirectPopup').style.display="block"	
	}

});