I just added a new route to my application, and when I go to it, Ember gives the error "I can not read the property" shouldSuperede "from undefined".
Here is my router:
App.Router.map ()-> @resource 'pages', -> @resource 'page', {path: ':page_id'}, -> # lots of routes under here, all work @route 'design' # new route that error happens when transition to
I started looking at the router code, but I'm really not sure what is going on, and I hope that there is something obvious that I am missing. If I add some entries to ember, actually the error occurs when doing some search on the pageβs route here, but again, that the route itself works fine.
It also doesnβt matter if I go from the page route or not, if I just reload the page with it already on the design route, I get the same error:
Transitioned into 'design' ember.js?body=1:14464 Uncaught TypeError: Cannot read property 'shouldSupercede' of undefined
Defusion
source share