I'm attempting to pass parameters to my route using the $state.go function. My code looks like this:
var promise = $state.go('.list', {listing: [1,2,3], marker: false});
Although the route is functioning correctly, both $stateParams and $state.params remain empty... For reference, here's my Plunker: http://plnkr.co/edit/3bpcnR?p=preview
What steps should I take to access the parameters passed through the "go" function?