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 has been archived by the owner on Nov 18, 2021. It is now read-only.
It seems event listeners fire in the wrong order when
useCapture = true
. See this Fiddle.With this markup:
And with listeners added on the capture phase:
For an event triggered on
#node2
:One would expect the following call order, which matches that of native event listeners.
handler0
handler1
handler2
Instead, we get:
handler2
handler1
handler0
The text was updated successfully, but these errors were encountered: