Closed oz1cz closed 7 years ago
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.)
Hi @oz1cz!
Thanks again for your help and attention to details! I'll have this fixed shortly.
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.)