More scripting stuff
This commit is contained in:
parent
0084a90ddb
commit
41f955e7ff
@ -10,7 +10,6 @@
|
|||||||
<BODY>
|
<BODY>
|
||||||
<SCRIPT src="/main.js"></SCRIPT>
|
<SCRIPT src="/main.js"></SCRIPT>
|
||||||
<SCRIPT>
|
<SCRIPT>
|
||||||
function setStyling(sheet) { document.getElementById('styling').setAttribute('href', sheet); return sheet; }
|
|
||||||
var sheet = getCookie('sheet');
|
var sheet = getCookie('sheet');
|
||||||
if(sheet != '') setStyling(sheet);
|
if(sheet != '') setStyling(sheet);
|
||||||
</SCRIPT>
|
</SCRIPT>
|
||||||
|
@ -16,15 +16,13 @@ function getCookie(cname) {
|
|||||||
for(var i = 0; i <ca.length; i++) {
|
for(var i = 0; i <ca.length; i++) {
|
||||||
var c = ca[i];
|
var c = ca[i];
|
||||||
while(c.charAt(0) == ' ') c = c.substring(1);
|
while(c.charAt(0) == ' ') c = c.substring(1);
|
||||||
if(c.indexOf(name) == 0)
|
if(c.indexOf(name) == 0) return c.substring(name.length, c.length);
|
||||||
return c.substring(name.length, c.length);
|
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
/* end stolen code; */
|
/* end stolen code; */
|
||||||
|
|
||||||
function setStyling(sheet, pathToRoot) {
|
function setStyling(sheet, pathToRoot) {
|
||||||
document.getElementById('styling')
|
document.getElementById('styling').setAttribute('href', sheet);
|
||||||
.setAttribute('href', pathToRoot + sheet + ".css");
|
|
||||||
return sheet;
|
return sheet;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user