misc #22

Merged
SethTrowbridge merged 3 commits from misc into master 2023-04-29 06:58:53 -04:00
Showing only changes of commit 4613ff38e2 - Show all commits

View File

@ -78,7 +78,10 @@ export const Router = {
document.addEventListener("click", e=> document.addEventListener("click", e=>
{ {
const t = e.target as HTMLAnchorElement; const t = e.target as HTMLAnchorElement;
if(t.href) const path = e.composedPath() as HTMLAnchorElement[];
for(let i=0; i<path.length; i++)
{
if(path[i].href)
{ {
const u = new URL(t.href); const u = new URL(t.href);
if(u.origin == document.location.origin) if(u.origin == document.location.origin)
@ -87,6 +90,8 @@ export const Router = {
const parts = Router.Parse(u); const parts = Router.Parse(u);
routeUpdate(parts.Path, parts.Params, parts.Anchor); routeUpdate(parts.Path, parts.Params, parts.Anchor);
} }
return;
}
} }
}) })
}, []); }, []);