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
disabled would mean no events at all. No event from ancestor elements. No :hover behaviour either. Unreactive.
none means that pointer events "see through" the element and just start their bubble and hover behaviour from the parentNode.
For some applications, you just want an element to be unreactive. Similar to adding the very first listener and calling stopImmediatePropagation on the event.
The text was updated successfully, but these errors were encountered:
Or some similar property value name.
disabled
would mean no events at all. No event from ancestor elements. No:hover
behaviour either. Unreactive.none
means that pointer events "see through" the element and just start their bubble and hover behaviour from theparentNode
.For some applications, you just want an element to be unreactive. Similar to adding the very first listener and calling
stopImmediatePropagation
on the event.The text was updated successfully, but these errors were encountered: