fix: keyboard input (#83) #86
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
That js file gets compiled based on my fork located here, which is compiled with I do like the keyboard for desktop support, and usually it plays nice with me stopping keyboard events when modals are open: See here for how I do this today. Upgrading to the latest Downgrading the emscripten compiler (emcc) solved the issue by fixing the disabling of events in my case. I assume it will be fixed eventually in the emscripten/core repo soon. |
Beta Was this translation helpful? Give feedback.
-
What did you see in reference to slow inputs? I've never experienced that. I do know continuous deletion in form inputs works just fine. |
Beta Was this translation helpful? Give feedback.
That js file gets compiled based on my fork located here, which is compiled with
emcc
. So I don't manually modify the generated output file.I do like the keyboard for desktop support, and usually it plays nice with me stopping keyboard events when modals are open:
See here for how I do this today.
Upgrading to the latest
emcc
caused this not to work, which I believe is a bug.Downgrading the emscripten compiler (emcc) solved the issue by fixing the disabling of events in my case. I assume it will be fixed eventually in the emscripten/core repo soon.