You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a group and a hideTrigger of 'tip' or 'closeButton', I notice that sometimes the tips disappear and do not come back. The 'visible' flag gets stuck to true.
My method of recreation is unscientific... create a bunch of tips on a page, on buttons or images lined up together, move the mouse rapidly across them from one to another and back until one or more disappear.
The text was updated successfully, but these errors were encountered:
This is fixed now.
This was due to the fact that show() was called when hovering the first trigger, and when the user hovers the next trigger, show() is called on the new tip, and doHide() on all other tips that are in the same group.
I forgot about the case, where the other tips aren't yet visible (doShow() has not been called), and the hide() function is never called (which normally is the case, since in most cases the mouseOut event triggers hide()).
When using a group and a hideTrigger of 'tip' or 'closeButton', I notice that sometimes the tips disappear and do not come back. The 'visible' flag gets stuck to true.
My method of recreation is unscientific... create a bunch of tips on a page, on buttons or images lined up together, move the mouse rapidly across them from one to another and back until one or more disappear.
The text was updated successfully, but these errors were encountered: