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
Say on an empty hash (`window.location.hash = ""), the following runs:
var state = new DefineMap({count: 0}); route.data = state; route.start()
What should the hash and state.count be after? Currently, on start we `assign(route.data, deparam(url) ). This leaves:
start
hash //-> "" state.count //->0
I think this is wrong. Either it should be:
hash //-> "" state.count //-> undefined
hash //-> "#!count=0" state.count //-> 0
The text was updated successfully, but these errors were encountered:
This issue: canjs/canjs#979 is the source of some of this weirdness. It lends itself to making the hash:
I will make this this happens.
Sorry, something went wrong.
No branches or pull requests
Say on an empty hash (`window.location.hash = ""), the following runs:
What should the hash and state.count be after? Currently, on
start
we `assign(route.data, deparam(url) ). This leaves:I think this is wrong. Either it should be:
The text was updated successfully, but these errors were encountered: