Skip to content

Instantly share code, notes, and snippets.

@Mattnmoore
Created October 22, 2018 17:13
Show Gist options
  • Select an option

  • Save Mattnmoore/67fac6862fcd0393fca715b4edbc52c1 to your computer and use it in GitHub Desktop.

Select an option

Save Mattnmoore/67fac6862fcd0393fca715b4edbc52c1 to your computer and use it in GitHub Desktop.
Angular route change focus
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