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
When a popup is displayed, there is an error in handling the css.buttonHover (typically "ui-state-hover") class:
This can be fixed thus: In jquery.keyboard.extension-altkeyspopup.js lines 291-293 (from version v1.26.21) replace
} else { $( this ).addClass( base.options.css.buttonHover );` }
with
} else { $keys.removeClass( base.options.css.buttonHover ); $( this ).addClass( base.options.css.buttonHover ); }
(I don't know if this is the simplest or best fix.)
The text was updated successfully, but these errors were encountered:
Hi @oz1cz!
Thanks again for your help and attention to details! I'll have this fixed shortly.
Sorry, something went wrong.
1153548
No branches or pull requests
When a popup is displayed, there is an error in handling the css.buttonHover (typically "ui-state-hover") class:
This can be fixed thus:
In jquery.keyboard.extension-altkeyspopup.js lines 291-293 (from version v1.26.21) replace
with
(I don't know if this is the simplest or best fix.)
The text was updated successfully, but these errors were encountered: