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
This prevents click-to-select, as data-kh-proxy="selectFocussed" relies on the element having focus in the first place.
data-kh-proxy="selectFocussed"
This is a known issue which only affects <button> elements.: https://bugs.webkit.org/show_bug.cgi?id=22261
<button>
The text was updated successfully, but these errors were encountered:
Changing <button> to <div> fixes the issue. So much for using native elements to get interactivity for free.
<div>
Sorry, something went wrong.
The official example uses buttons and does work in Safari: https://www.w3.org/TR/wai-aria-practices-1.1/examples/tabs/tabs-2/tabs.html
85be73f
dotherightthing
No branches or pull requests
This prevents click-to-select, as
data-kh-proxy="selectFocussed"
relies on the element having focus in the first place.This is a known issue which only affects
<button>
elements.: https://bugs.webkit.org/show_bug.cgi?id=22261The text was updated successfully, but these errors were encountered: