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
{{ message }}
This repository was archived by the owner on Jul 29, 2019. It is now read-only.
Explanation of why:
(source) PR 2498 Comment
"The mouseover/mouseout event is being fired on child elements. In this case it was something like
<divclass='vis-item'><h1>HTML</h1>
Text
</div>
So when you hovered over the <h1> element, there was a new element under the cursor, which fires mouseout, followed by its related mouseover. This is expected; however, all the code handling those events don't care about the specific element, only the 'item' which they are in. (Reference: ItemSet.js:1874 and ItemSet.js:1896)
So tool-tips will be moved, and 'itemover'/'itemout' will be emitted when the cursor is still over the same item."