mirror of
https://github.com/osmarks/website
synced 2024-11-08 12:19:54 +00:00
Fix bug in prefetch
This commit is contained in:
parent
774357e134
commit
5436237317
@ -6,7 +6,11 @@ const prefetchHook = () => {
|
|||||||
let lastFetch = 0
|
let lastFetch = 0
|
||||||
const prefetch = event => {
|
const prefetch = event => {
|
||||||
if (Date.now() - lastFetch >= 200) {
|
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) {
|
if (href.origin === window.location.origin) {
|
||||||
for (const ignorePath of ignorePaths) {
|
for (const ignorePath of ignorePaths) {
|
||||||
if (href.pathname.startsWith(ignorePath)) return
|
if (href.pathname.startsWith(ignorePath)) return
|
||||||
|
Loading…
Reference in New Issue
Block a user