* @ngdoc object * @name ng.$routeParams * @requires $route * * @description * Current set of route parameters. The route parameters are a combination of the * ng.$location $location `search()`, and `path()`. The `path` parameters * are extracted when the ng.$route $route path
()
| 7536 | * </pre> |
| 7537 | */ |
| 7538 | function $RouteParamsProvider() { |
| 7539 | this.$get = valueFn({}); |
| 7540 | } |
| 7541 | |
| 7542 | /** |
| 7543 | * DESIGN NOTES |