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
it would be great to have back and next method for navigating through history
back
next
The text was updated successfully, but these errors were encountered:
I've made like this:
routie.back = function () { if (document.referrer.indexOf(window.location.host) >= 0) { window.history.back(); } else { routie('') } };
Sorry, something went wrong.
Well, now I think, my idea looks bad. Routie should remember every changed hash and navigate through its history
What's wrong with using window.history.back() and window.history.forward()? These should work out of the box.
I haven't dug into why, but in cordova window.history.back() and window.history.forward() don't seem to work -- at least not on the emulated Nexus 4.
window.history.back()
window.history.forward()
No branches or pull requests
it would be great to have
back
andnext
method for navigating through historyThe text was updated successfully, but these errors were encountered: