You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The URL will not reflect. There are a couple of ways to possible fix this:
If route.start() has already been called, setting route.data should teardown and bind to the new observable. In this case, the second start() call above wouldn't happen.
Create a route.stop() that does teardown. This puts it on the user to keep track of if they've already called start() though.
If we do:
The URL will not reflect. There are a couple of ways to possible fix this:
route.start()
has already been called, settingroute.data
should teardown and bind to the new observable. In this case, the second start() call above wouldn't happen.route.stop()
that does teardown. This puts it on the user to keep track of if they've already called start() though.What do you think? cc @justinbmeyer @phillipskevin
The text was updated successfully, but these errors were encountered: