If I get my ember data model from the store and go on a route with it
var model = App.Foo.find(1); router.transitionTo('foo', model);
Going to the route below and I see console.log
App.FooRoute = Ember.Route.extend({ redirect: function() { console.log("redirect ..."); this.transitionTo('bar'); } });
If I change the model again and go over, it will still log the console, and everything will work. But if I am on the same model 2 times in a row, the console log will never be. When I go through ember source (RC3), I don’t understand why in this case it will break.
Why does the transition fail in ember when I do this?
source share