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
Describe the bug
When the hotkey is used to trigger fullscreen, all subsequent keypresses triggers the hotkey- even keys not assigned.
To Reproduce
Steps to reproduce the behavior:
Add document.documentElement.requestFullscreen to the callback along with any console log
On a browser, activate fullscreen via the hotkey
Now press any key (even if its not assigned to the hotkey), notice how it's triggering the hotkey
Please try and add a codesandbox or stackblitz to reproduce the bug: <-- Link to reproducable -->
(You need to open the preview code in the pop-out for fullscreen to work)
Additional context
Disabling "keydown" and only listening on "keyup" fixes the issue
The text was updated successfully, but these errors were encountered:
Describe the bug
When the hotkey is used to trigger fullscreen, all subsequent keypresses triggers the hotkey- even keys not assigned.
To Reproduce
Steps to reproduce the behavior:
document.documentElement.requestFullscreen
to the callback along with any console logPlease try and add a codesandbox or stackblitz to reproduce the bug:
<-- Link to reproducable -->
(You need to open the preview code in the pop-out for fullscreen to work)
Additional context
Disabling "keydown" and only listening on "keyup" fixes the issue
The text was updated successfully, but these errors were encountered: