This is the nested route that i have created in ember.
App.Router.map(function(){
this.resource('makes', function(){
this.resource('model', {path: ':division_id'}, function(){
this.resource('zip', {path: ':model_id'});
});
});
this.resource('spec', {path: '/makes/:division_id/:model_id/:zipcode'});
});
In the ziproute when i log the params this is the output i'm getting.
Object {model_id: "ILX"}
But the url for zip route is like /makes/Acura/ILX. So i should be getting the both division_id and model_id.
I'm unable to get division_id in params.
Example app is done at : http://jsbin.com/jujene/36/edit