diff options
Diffstat (limited to 'closure')
| -rw-r--r-- | closure/angular.js | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/closure/angular.js b/closure/angular.js index 0e520c53..d39b2ab8 100644 --- a/closure/angular.js +++ b/closure/angular.js @@ -1709,7 +1709,8 @@ angular.$routeProvider.when = function(path, route) {};   *   resolve: (Object.<string, (   *       string|Function|Array.<string|Function>|angular.$q.Promise   *       )>|undefined), - *   redirectTo: (string|function()|undefined), + *   redirectTo: ( + *       string|function(Object.<string>, string, Object): string|undefined),   *   reloadOnSearch: (boolean|undefined)   *   }}   */ @@ -1732,7 +1733,7 @@ angular.$routeProvider.Params.templateUrl;   */  angular.$routeProvider.Params.resolve; -/** @type {string|function()} */ +/** @type {string|function(Object.<string>, string, Object): string} */  angular.$routeProvider.Params.redirectTo;  /** @type {boolean} */  | 
