I'm trying to send paras to my route using the $state.go function. Here's my code:
var promise = $state.go('.list', {listing: [1,2,3], marker: false});
The route works, but $stateParams and $state.params are still empty... Here's the plunkr:http://plnkr.co/edit/3bpcnR?p=preview
How can I get the params sent via the "go" function?