You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
keydown and keyup are the events to use now (not keypress).
Global KeyEvent is long gone.
KeyboardEvent instances now provide .key and .code properties instead
of deprecated .keyCode and .which. Addresses #1825
Multiple ticking time bombs here, relying on deprecated APIs, such as:
KeyboardEvent.keyCode:
keypress Event
We should also remove the polyfill for the deprecated DOM 3 KeyEvent API.
At some point browsers will remove all the stuff we are relying on and it will simply stop working.
The text was updated successfully, but these errors were encountered: