-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
No way to dismiss a tooltip on touch devices #9
Comments
I had the same problem. Adding |
Based on https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile , another likely option is: if (is_iOS) {
$(document.body).css({cursor: 'pointer'});
} |
@muxcmux Can you elaborate on your fix? Is that and option you added within the manual initialisation? i.e.:
Also wondering if there's a fix for this in the works, because we're looking to use Tether, drop and tooltip in production. |
@aaronstezycki Yes, that is correct and as far as I can remember correctly it was working fine on prod. Soon after that though, we abandoned the idea of tooltips on touch devices and just used inline text to aid users |
On an iOS or other touch device, where hover events are triggered after a click, there does not appear to be way to get the tooltips to dismiss.
The text was updated successfully, but these errors were encountered: