mirror of
https://github.com/osmarks/website
synced 2024-12-23 08:30:44 +00:00
Fix bug in prefetch
This commit is contained in:
parent
774357e134
commit
5436237317
@ -6,7 +6,11 @@ const prefetchHook = () => {
|
||||
let lastFetch = 0
|
||||
const prefetch = event => {
|
||||
if (Date.now() - lastFetch >= 200) {
|
||||
const href = new URL(event.target.getAttribute("href"), window.location)
|
||||
let target = event.target
|
||||
while (!target.hasAttribute("href")) {
|
||||
target = target.parentElement
|
||||
}
|
||||
const href = new URL(target.getAttribute("href"), window.location)
|
||||
if (href.origin === window.location.origin) {
|
||||
for (const ignorePath of ignorePaths) {
|
||||
if (href.pathname.startsWith(ignorePath)) return
|
||||
|
Loading…
Reference in New Issue
Block a user