We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a state with url params:
$stateProvider.state('schedule.week', { url: '/:year/:week', controller: 'ScheduleWeekController', templateUrl: 'sections/schedule/week.html', reloadOnSearch: false });
However, when I try to go to the same state with different url params, It's being suppressed. I think by this line: https://github.com/angular-ui/ui-router/blob/master/src/state.js#L993
$state.go($state.current, { year: '2015', week: '09' }, {reload: true});
I don't think that reloadOnSearch: false should prevent URL param changes, and should only affect query/search params as the name suggests
reloadOnSearch: false
The text was updated successfully, but these errors were encountered:
Dupe #1079 Fixed in 0.2.15 commit 6ca0d77
Sorry, something went wrong.
No branches or pull requests
I have a state with url params:
However, when I try to go to the same state with different url params, It's being suppressed. I think by this line: https://github.com/angular-ui/ui-router/blob/master/src/state.js#L993
I don't think that
reloadOnSearch: false
should prevent URL param changes, and should only affect query/search params as the name suggestsThe text was updated successfully, but these errors were encountered: