-
Notifications
You must be signed in to change notification settings - Fork 344
New issue
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
KeyboardEvent.keyCode Deprecated #1350
Comments
Agree we should replace uses of Note that we will need to use
Here are the KeyboardEvent.key values that we will typically need (note that they are strings):
We can still use We may want to do something like the following to be sure we work in older browsers?
|
The ARIA Authoring Practices (APG) Task Force just discussed The full IRC log of that discussion<carmacleod> TOPIC: keyCode Deprecation<carmacleod> github: https://github.com//issues/1350 <carmacleod> mck: should we add this to our code guide? <carmacleod> Jemma: good idea Also, Jon mentioned that we should not have common "util" methods for these, because we want each example to be self-contained and self-explanatory, so we don't want stuff hiding in util methods. Folks agreed that "no utils" is best. |
Because of the deprecation of
keyCode
should theKeyboardEvent.code
attribute not be supported? See the keyCode search results.The text was updated successfully, but these errors were encountered: