lets make that session storage actually lol

This commit is contained in:
nelle 2024-08-24 02:05:51 -06:00
parent 7bd1fdb169
commit f618fa87d6

View file

@ -1,5 +1,5 @@
function onload() {
if (localStorage.getItem('sgaEnabled')) {
if (sessionStorage.getItem('sgaEnabled')) {
enableSGA()
}
else {
@ -10,14 +10,14 @@ function onload() {
function enableSGA() {
document.getElementById("body").style.fontFamily = "standardGalactic, system-ui";
document.getElementById("body").style.fontWeight = "lighter";
localStorage.setItem( 'sgaEnabled', 1);
console.debug(localStorage.getItem('sgaEnabled'))
sessionStorage.setItem( 'sgaEnabled', 1);
console.debug(sessionStorage.getItem('sgaEnabled'))
}
function disableSGA() {
document.getElementById("body").style.fontFamily = "terminess-nf, system-ui";
localStorage.removeItem( 'sgaEnabled');
console.debug(localStorage.getItem('sgaEnabled'))
sessionStorage.removeItem( 'sgaEnabled');
console.debug(sessionStorage.getItem('sgaEnabled'))
}
function toggleTheme() {