7 lines
No EOL
404 B
JavaScript
7 lines
No EOL
404 B
JavaScript
let ignore;
|
|
let url = `https://coryd.dev/api/event/?page=${encodeURIComponent(window.location.href)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}`
|
|
if (window.localStorage && window.localStorage.getItem('ignore')) {
|
|
ignore = localStorage.getItem('ignore')
|
|
url = `${url}&ignore=${ignore}`
|
|
}
|
|
if (!window.fathom) fetch(url).then(() => {}).catch(() => {}); |