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
To implement delayHoverStart and delayHoverEnd there are many situations such as below:
First
When start delay timeout greater than or equal to the end delay timeout. no worries about this, because both of mouseover and mouseout events will be run perfectly.
Second
When start delay timeout less than end delay. In this situation, there are three options
We can clear start delay and JUST run end delay but we will lose mouseover event.
We can keep both of them but maybe mouseout event runs before mouseover
We can check by end >= start as always
I was wondering which one could be more useful.
The text was updated successfully, but these errors were encountered:
Pinging @necolas as he mentioned something along these lines last week. We should consider these for the hover module and make a task on what we want to do going forward in #15257.
To implement
delayHoverStart
anddelayHoverEnd
there are many situations such as below:First
When start delay timeout greater than or equal to the end delay timeout. no worries about this, because both of
mouseover
andmouseout
events will be run perfectly.Second
When start delay timeout less than end delay. In this situation, there are three options
mouseover
event.mouseout
event runs beforemouseover
end >= start
as alwaysI was wondering which one could be more useful.
The text was updated successfully, but these errors were encountered: