Keypress
Keypress copied to clipboard
Providing an "on_keydown" handler shouldn't stop the key from working inside inputs.
I created a simple example:
https://jsfiddle.net/qs4v9mua/
If you try to use the "delete" key to remove characters from the input, it does nothing (unless you hold it down). However, if you use the "backspace" key, it works.
The only difference between the two configuration is the fact that the "on_keydown" handler is passed. How do I fix this so the configuration doesn't interfere with inputs?