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 recall IronLocation has a pushState function which could change the URL without being reactive
Will this be added to Iron.Location or how can I get same behaviour?
Thanks
The text was updated successfully, but these errors were encountered:
This is the missing logic. The skipReativity. I tried forking this repo and add the logic back in and it works.. But why did you remove it?
IronLocation.pushState = function (state, title, url, skipReactive) { setState(state, title, url, skipReactive); if (history.pushState) history.pushState(state, title, url); else window.location = url; };
[https://github.com/EventedMind/iron-router/blob/v0.9.1/lib/client/location.js#L72]
Sorry, something went wrong.
No branches or pull requests
I recall IronLocation has a pushState function which could change the URL without being reactive
Will this be added to Iron.Location or how can I get same behaviour?
Thanks
The text was updated successfully, but these errors were encountered: