Skip to content

Instantly share code, notes, and snippets.

@UsabillaSuccess
Last active July 19, 2017 12:29
Show Gist options
  • Save UsabillaSuccess/787150da7c824c3c2c05295855bfc15d to your computer and use it in GitHub Desktop.
Save UsabillaSuccess/787150da7c824c3c2c05295855bfc15d to your computer and use it in GitHub Desktop.
usbl-spa-angular
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