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
we use onMouseOver on each item in the command log to show dom snapshots for commands.
problem:
because mouseover bubbles, the event is triggered multiple times when a user hovers within the command, since inner dom nodes inside the command will bubble their mouseover to the outer dom node.
mouseeventbefore.mp4
solution:
use mouseenter, which doesn't bubble and mimics the behavior of a css :hover psuedo selector
we use onMouseOver on each item in the command log to show dom snapshots for commands.
problem:
because mouseover bubbles, the event is triggered multiple times when a user hovers within the command, since inner dom nodes inside the command will bubble their mouseover to the outer dom node.
mouseeventbefore.mp4
solution:
use mouseenter, which doesn't bubble and mimics the behavior of a css :hover psuedo selector
mouseeventafter.mp4