This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/scripts/index.js
Cory Dransfeldt 9cfc82c077
fix: headers
2024-03-25 10:25:21 -07:00

6 lines
No EOL
465 B
JavaScript

let ignore = window?.localStorage?.getItem('ignore')
let urlBase = 'https://coryd.dev/api/event/'
let params = `site=${encodeURIComponent(window.location.origin)}&page=${encodeURIComponent(window.location.pathname)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}`
let url = `${urlBase}?${params}`;
if (ignore) url = `${urlBase}?ignore=${ignore}&${params}`
if (!window.fathom) fetch(url).then(() => {}).catch(() => {});