We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
keydown
preventDefaults()
The dialog should not close. The Esc key press should be handled by the guest (child view).
The dialog closes making it impossible for the guest views to interact with Esc without stopPropagation().
stopPropagation()
Use defaultPrevented flag in the dialog logic to discover if the event has been handled or not.
defaultPrevented
If you'd like to see this fixed sooner, add a 👍 reaction to this post.
The text was updated successfully, but these errors were encountered:
bf14897
oleq
Successfully merging a pull request may close this issue.
📝 Provide detailed reproduction steps (if any)
keydown
andpreventDefaults()
it to manage its internal logic.✔️ Expected result
The dialog should not close. The Esc key press should be handled by the guest (child view).
❌ Actual result
The dialog closes making it impossible for the guest views to interact with Esc without
stopPropagation()
.❓ Possible solution
Use
defaultPrevented
flag in the dialog logic to discover if the event has been handled or not.If you'd like to see this fixed sooner, add a 👍 reaction to this post.
The text was updated successfully, but these errors were encountered: