Created
October 22, 2018 17:13
-
-
Save Mattnmoore/67fac6862fcd0393fca715b4edbc52c1 to your computer and use it in GitHub Desktop.
Angular route change focus
This file contains hidden or 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
| constructor(private router: Router) { | |
| router.events.pipe(filter(event => event instanceof NavigationEnd)).subscribe(() => { | |
| document.getElementsByTagName('h1')[0].focus(); | |
| }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment