Hopefully works now
This commit is contained in:
parent
0342673a94
commit
8e69e52ac5
@ -8,7 +8,36 @@
|
|||||||
<LINK rel="stylesheet" id="styling" href="" />
|
<LINK rel="stylesheet" id="styling" href="" />
|
||||||
</HEAD>
|
</HEAD>
|
||||||
<BODY>
|
<BODY>
|
||||||
<SCRIPT src="/main.js"></SCRIPT>
|
<SCRIPT>
|
||||||
|
/*
|
||||||
|
these code snippets stolen from
|
||||||
|
https://www.w3schools.com/js/js_cookies.asp
|
||||||
|
*/
|
||||||
|
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 "";
|
||||||
|
}
|
||||||
|
/* end stolen code; */
|
||||||
|
|
||||||
|
function setStyling(sheet) {
|
||||||
|
document.getElementById('styling').setAttribute('href', sheet);
|
||||||
|
return sheet;
|
||||||
|
}
|
||||||
|
</SCRIPT>
|
||||||
<SCRIPT>
|
<SCRIPT>
|
||||||
var sheet = getCookie('sheet');
|
var sheet = getCookie('sheet');
|
||||||
if(sheet != '') setStyling(sheet);
|
if(sheet != '') setStyling(sheet);
|
||||||
|
Loading…
Reference in New Issue
Block a user