Last active
July 19, 2017 12:29
-
-
Save UsabillaSuccess/787150da7c824c3c2c05295855bfc15d to your computer and use it in GitHub Desktop.
usbl-spa-angular
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
import { Router, NavigationStart, Event as NavigationEvent } from '@angular/router'; | |
constructor(router:Router) { | |
router.events.forEach((event: NavigationEvent) => { | |
if(event instanceof NavigationEnd) { | |
// do your stuff | |
window.usabilla_live('virtualPageView'); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment