From a0c5687fa36d961c9d5f8e48dc7bdc7cbc07544a Mon Sep 17 00:00:00 2001 From: Wes Alvaro Date: Wed, 28 Jan 2015 10:29:56 -0800 Subject: [PATCH] routeParams are {!Object} Calling Object.keys on null is a TypeError. And the mapping should be string -> string. --- src/ngRoute/route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index 56ec491a207e..76cd68397e43 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -477,7 +477,7 @@ function $RouteProvider() { * definitions will be interpolated into the location's path, while * remaining properties will be treated as query params. * - * @param {Object} newParams mapping of URL parameter names to values + * @param {!Object} newParams mapping of URL parameter names to values */ updateParams: function(newParams) { if (this.current && this.current.$$route) {