Created
October 13, 2021 20:13
-
-
Save ssougnez/63a45153085547dc8633eb2a8e2fb083 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (element.tagName === 'A') { | |
const href: string = element.href?.toLowerCase(); | |
if (href?.startsWith(location.origin.toLowerCase())) { | |
element.addEventListener('click', (e: MouseEvent) => { | |
this._router.navigate([href.substring(location.origin.length)]); | |
e.preventDefault(); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment