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. */ /* Cookie consent */ !function(){var i,r,o;i="__tcfapiLocator",r=[],(o=window.frames[i])||(function e(){var t=window.document,a=!!o;if(!a)if(t.body){var n=t.createElement("iframe");n.style.cssText="display:none",n.name=i,t.body.appendChild(n)}else setTimeout(e,5);return!a}(),window.__tcfapi=function(){for(var e,t=[],a=0;a<arguments.length;a++)t[a]=arguments[a];if(!t.length)return r;if("setGdprApplies"===t[0])3<t.length&&2===parseInt(t[1],10)&&"boolean"==typeof t[3]&&(e=t[3],"function"==typeof t[2]&&t[2]("set",!0));else if("ping"===t[0]){var n={gdprApplies:e,cmpLoaded:!1,cmpStatus:"stubCMP",apiVersion:2};"function"==typeof t[2]&&t[2](n,!0)}else r.push(t)},window.addEventListener("message",function(n){var i="string"==typeof n.data,e={};try{e=i?JSON.parse(n.data):n.data}catch(e){}var r=e.__tcfapiCall;r&&window.__tcfapi(r.command,r.version,function(e,t){var a={__tcfapiReturn:{returnValue:e,success:t,callId:r.callId}};i&&(a=JSON.stringify(a)),n.source.postMessage(a,"*")},r.parameter)},!1))}(); !function(){var i,n,s;i="__uspapiLocator",n=[],(s=window.frames[i])||(function a(){var e=window.document,n=!!s;if(!s)if(e.body){var t=e.createElement("iframe");t.style.cssText="display:none",t.name=i,e.body.appendChild(t)}else setTimeout(a,5);return!n}(),window.__uspapi=function(){for(var a=[],e=0;e<arguments.length;e++)a[e]=arguments[e];if(!a.length)return n;"ping"===a[0]?"function"==typeof a[2]&&a[2]({cmpLoaded:!1,cmpStatus:"stubCMP"},!0):n.push(a)},window.addEventListener("message",function(t){var i="string"==typeof t.data,a={};try{a=i?JSON.parse(t.data):t.data}catch(a){}var s=a.__uspapiCall;s&&window.__uspapi(s.command,s.version,function(a,e){var n={__uspapiReturn:{returnValue:a,success:e,callId:s.callId}};i&&(n=JSON.stringify(n)),t.source.postMessage(n,"*")},s.parameter)},!1))}(); async src='https://cmp.uniconsent.com/v2/a635eb8630/cmp.js' /* 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 ""; }