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
Seems that event.which is no longer the way to pick up on key presses.
event.which
KeyboardEvent seems to be the way things are done with modern browsers.
We need to consider the new hotness that is KeyboardEvent.key and the related Key Values that will need to be the replacement of privateScanCodeMap
KeyboardEvent.key
privateScanCodeMap
Be aware that making this change will limit our backwards compatibility can I use: keyboardevent.key
keyboardevent.key
@ahsteele pointed out w3c-keys which has a TypeScript definitions for many (but I don't think all) of the keys.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
Seems that
event.which
is no longer the way to pick up on key presses.KeyboardEvent seems to be the way things are done with modern browsers.
We need to consider the new hotness that is
KeyboardEvent.key
and the related Key Values that will need to be the replacement ofprivateScanCodeMap
Be aware that making this change will limit our backwards compatibility can I use:
keyboardevent.key
@ahsteele pointed out w3c-keys
which has a TypeScript definitions for many (but I don't think all) of the keys.
The text was updated successfully, but these errors were encountered: