aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-06-03 15:06:49 -0400
committerBobby <[email protected]>2023-06-03 15:06:49 -0400
commitdc33e95ab5f7e3bbb43d02e1e87300c5d126122b (patch)
treed281edefa66d3ff0055039a21117b03bd48b16f5
parent89c01d8311939641760c14a1c537e845b90eeece (diff)
downloadthatcomputerscientist-dc33e95ab5f7e3bbb43d02e1e87300c5d126122b.tar.xz
thatcomputerscientist-dc33e95ab5f7e3bbb43d02e1e87300c5d126122b.zip
Update oneko cookie path
-rw-r--r--templates/blog/partials/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/blog/partials/base.html b/templates/blog/partials/base.html
index dec82487..af0bb774 100644
--- a/templates/blog/partials/base.html
+++ b/templates/blog/partials/base.html
@@ -201,12 +201,12 @@
});
function summonOneko() {
- document.cookie = "summonOneko=true; expires=Fri, 31 Dec 9999 23:59:59 GMT";
+ document.cookie = "summonOneko=true; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/";
location.reload();
}
function withdrawOneko() {
- document.cookie = "summonOneko=false; expires=Fri, 31 Dec 9999 23:59:59 GMT";
+ document.cookie = "summonOneko=false; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/";
location.reload();
}
</script>