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
According to: https://github.com/tastejs/todomvc/blob/master/app-spec.md#editing
If escape is pressed during the edit, the edit state should be left and any changes be discarded.
and the test assertions: https://github.com/tastejs/todomvc/tree/master/tests#example-output
✓ should cancel edits on escape (1115ms)
case
subscriptions
[esc]
signal('CANCEL')()
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
add test for [esc] CANCEL ediing for #64
4fdb098
add implementation for [esc] CANCEL editing fixes #64
d812e6c
nelsonic
No branches or pull requests
According to: https://github.com/tastejs/todomvc/blob/master/app-spec.md#editing
and the test assertions: https://github.com/tastejs/todomvc/tree/master/tests#example-output
case
insubscriptions
for[esc]
keysignal('CANCEL')()
to cancel editing without saving changes.The text was updated successfully, but these errors were encountered: