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
It would be good to have stopImmediatePropagation support. My current use case is the following I have both a onClick and onTouchEnd event attached, on touch event supporting devices this will trigger the event handler twice.
I don't think it would make sense for stopImmediatePropagation on a touchend to stop a click event from firing. If you do e.preventDefault() on the touchend, my guess is it'll work already – can you to test to see?
It would be good to have
stopImmediatePropagation
support. My current use case is the following I have both a onClick and onTouchEnd event attached, on touch event supporting devices this will trigger the event handler twice.It's natively supported IE9+ and a simple polyfill will be easy for IE8 since react already has a synthetic event system.
The text was updated successfully, but these errors were encountered: