diff options
| author | Bobby <[email protected]> | 2023-06-03 15:06:49 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-06-03 15:06:49 -0400 |
| commit | dc33e95ab5f7e3bbb43d02e1e87300c5d126122b (patch) | |
| tree | d281edefa66d3ff0055039a21117b03bd48b16f5 | |
| parent | 89c01d8311939641760c14a1c537e845b90eeece (diff) | |
| download | thatcomputerscientist-dc33e95ab5f7e3bbb43d02e1e87300c5d126122b.tar.xz thatcomputerscientist-dc33e95ab5f7e3bbb43d02e1e87300c5d126122b.zip | |
Update oneko cookie path
| -rw-r--r-- | templates/blog/partials/base.html | 4 |
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> |
