NOTICE: Infinity N5.2 and N5 FAQ 0.0.0
The wiki has been updated to include the N5.2 changes and the v0.0.0 FAQ.
List of wiki pages updated in N5.2.
MediaWiki: Common.js
From Infinity
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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */
/* The main toggle function moved here. */
function toggleN4(showN4) {
/* alert("clicked! " +showN4); */
if (showN4=="true") {
$(".n4").show(300);
$(".n4list").show(300);
$(".n4inline").show(300);
$(".c1hide").hide(300);
setCookie("showN4", "true", 30);
var user=getCookie("showN4");
/* alert("Saved cookie: " + user); */
var ele = document.getElementsByClassName("c1strike");
for(var i=0;i<ele.length;i++){
ele[i].style.setProperty("text-decoration", "line-through");
}
} else {
$(".n4").hide(300);
$(".n4list").hide(300);
$(".n4inline").hide(300);
$(".c1hide").show(300);
setCookie("showN4", "false", 30);
var user=getCookie("showN4");
/* alert("Saved cookie: " + user); */
var ele = document.getElementsByClassName("c1strike");
for(var i=0;i<ele.length;i++){
ele[i].style.setProperty("text-decoration", "");
}
}
}
function forceN4() {
/* alert("clicked! " +showN4); */
setCookie("showN4", "true", 30);
$(".n4").show(0);
$(".n4list").show(0);
$(".n4inline").show(0);
$(".c1hide").hide(0);
$('#gametoggle').attr('checked', true);
var ele = document.getElementsByClassName("c1strike");
for(var i=0;i<ele.length;i++){
ele[i].style.setProperty("text-decoration", "line-through");
}
}
function forceC1() {
/* alert("clicked! " +showN4); */
setCookie("showN4", "false", 30);
$('#gametoggle').attr('checked', false);
$(".n4").hide(0);
$(".n4list").hide(0);
$(".n4inline").hide(0);
$(".c1hide").show(0);
var ele = document.getElementsByClassName("c1strike");
for(var i=0;i<ele.length;i++){
ele[i].style.setProperty("text-decoration", "");
}
}
/* This code creates the N4 reveal slider, and what happens when you click on it. */
$(document).ready(function(){
var doShow=getCookie("showN4");
if (doShow =="true") {
forceN4()
}
var showFromURL=getParameterByName('version');
if (showFromURL =="n4") {
forceN4()
setCookie("showN4", "true", 30);
}
if (showFromURL =="c1") {
forceC1()
setCookie("showN4", "false", 30);
}
$(".n4toggle").hide();
$("#gametoggle").click(function(){
if ($("#gametoggle").is(":checked")) {
toggleN4("true")
} else {
toggleN4("false")
}
});
});
$(function () {
$('#n4gametoggle').html("<span class='gamesliderlabel'>Show full N4 rules: </span><label class='switch' > <input type='checkbox' id='gametoggle' ><span class='slider round' ></span></label>");
}());
/* URL parameter stuff. */
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, '\\$&');
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
}
/* Cookie stuff. */
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i <ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}