We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecdf464 commit fbc8e42Copy full SHA for fbc8e42
src/state.js
@@ -1436,9 +1436,9 @@ function $StateProvider( $urlRouterProvider, $urlMatcherFactory) {
1436
return fromAndToState.params[key].location != "search";
1437
}
1438
var nonQueryParamKeys = fromAndToState.params.$$keys().filter(notSearchParam);
1439
- var nonQueryParams = pick.apply(this, [fromAndToState.params].concat(nonQueryParamKeys));
+ var nonQueryParams = pick.apply({}, [fromAndToState.params].concat(nonQueryParamKeys));
1440
var nonQueryParamSet = new $$UMFP.ParamSet(nonQueryParams);
1441
- return nonQueryParamSet.$$equals(fromParams, toParams)
+ return nonQueryParamSet.$$equals(fromParams, toParams);
1442
1443
1444
// If reload was not explicitly requested
0 commit comments