Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         if (window.location.pathname.split('/prepare/')[1]) {
  2.             this.showHeader = false;
  3.         }
  4.         this.router.events
  5.             .subscribe((event) => {
  6.                 if (event instanceof NavigationEnd) {
  7.                     this.showHeader = !event.url.split('/prepare/')[1];
  8.                 }
  9.             });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement