fixed AngularJS escaping '?' character in URL
This commit is contained in:
parent
57d49a5970
commit
f5c1ae0719
1 changed files with 2 additions and 2 deletions
|
@ -67,9 +67,9 @@ function(KeyService, UserService, CookieService, ApiService, Features, Config, $
|
|||
|
||||
planService.getPlan(planId, function(plan) {
|
||||
if (planService.isOrgCompatible(plan)) {
|
||||
$location.path('/organizations/new/?plan=' + planId);
|
||||
$location.path('/organizations/new').search('plan', planId);
|
||||
} else {
|
||||
$location.path('/user?plan=' + planId);
|
||||
$location.path('/user').search('plan', planId);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Reference in a new issue