fix: paths
This commit is contained in:
parent
1d4f9a62b2
commit
f1aa80b606
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "8.7.5",
|
"version": "8.7.6",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>.client-side {display:none}</style>
|
<style>.client-side {display:none}</style>
|
||||||
<img style="display:none" src="/api/event?page={{ fullUrl | url_encode }}&ns=true" />
|
<img style="display:none" src="/api/event?site={{ meta.url | url_encode }}&page={{ page.url | url_encode }}&ns=true" />
|
||||||
</noscript>
|
</noscript>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
let ignore;
|
let ignore;
|
||||||
let url = `https://coryd.dev/api/event/?page=${encodeURIComponent(window.location.href)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}`
|
let url = `https://coryd.dev/api/event/?site=${encodeURIComponent(window.location.origin)}&page=${encodeURIComponent(window.location.pathname)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}`
|
||||||
if (window.localStorage && window.localStorage.getItem('ignore')) {
|
if (window.localStorage && window.localStorage.getItem('ignore')) {
|
||||||
ignore = localStorage.getItem('ignore')
|
ignore = localStorage.getItem('ignore')
|
||||||
url = `${url}&ignore=${ignore}`
|
url = `${url}&ignore=${ignore}`
|
||||||
|
|
Reference in a new issue