raycar5

Results 2 comments of raycar5

If you just want the basics like observing route changes and an action to route it's really simple to do it yourself like so ```javascript import { Injectable } from...

In order to capture the "this" it needs to be an arrow function, `routeListener(event: NavigationEnd){...` won't work: [Differences between arrow and function](https://stackoverflow.com/questions/34361379/arrow-function-vs-function-declaration-expressions-are-they-equivalent-exch). Alternatively, `.subscribe(this.routeListener.bind(this))` would work with both a normal...