How do you pass current $routeParams to resolve so they can be used to do a specific $http.get. Right now I\'ve just tested $routeParams and passed back the param to be log
From the angular documentation for $routeProvider
Be aware that ngRoute.$routeParams will still refer to the previous route within these resolve functions. Use $route.current.params to access the new route parameters, instead.
So..
SomeData: function( $route ) {
return $route.current.params.paramType;
}