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
When determining what key was pressed in keyboard event handlers, we examine various properties:
which
drop-down
input-text
typeahead
keyCode
input-time
Both of these are now deprecated, so they should all be switched to use the key property - info
key
Thanks to: day8/re-frame-10x#231
The text was updated successfully, but these errors were encountered:
Some additional info, in case it would be useful:
keyCode is supported by all browsers. (According to caniuse.com)
key not as much. https://caniuse.com/#search=keyboardevent.key
Sorry, something went wrong.
dab03ef
No branches or pull requests
When determining what key was pressed in keyboard event handlers, we examine various properties:
which
is used bydrop-down
,input-text
andtypeahead
keyCode
is used byinput-time
Both of these are now deprecated, so they should all be switched to use the
key
property - infoThanks to: day8/re-frame-10x#231
The text was updated successfully, but these errors were encountered: