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
I believe this has something to do with chrome 56 modification on preventDefault but am not sure because I am not super familiar with interactjs's codebase and the preventDefault mechanism.
What I having trouble with is my buttons inside my draggable cannot capture the click event. This happens with Chrome on a mobile device.
Chrome on desktop, Safari on iOS works.
When using chrome's mobile device emulation I got the warning:
"Unable to preventDefault inside passive event listener due to target being treated as passive"
It seems that in order for click events to work inside a draggable, the preventDefault method has to be called and the new chrome changes breaks the preventDefault method and is this why clicking does not work on a touch device?
Any suggestion would be appreciated!
The text was updated successfully, but these errors were encountered:
I believe this has something to do with chrome 56 modification on preventDefault but am not sure because I am not super familiar with interactjs's codebase and the preventDefault mechanism.
What I having trouble with is my buttons inside my draggable cannot capture the click event. This happens with Chrome on a mobile device.
Chrome on desktop, Safari on iOS works.
When using chrome's mobile device emulation I got the warning:
"Unable to preventDefault inside passive event listener due to target being treated as passive"
As I read on a previous issue post:
#58
It seems that in order for click events to work inside a draggable, the preventDefault method has to be called and the new chrome changes breaks the preventDefault method and is this why clicking does not work on a touch device?
Any suggestion would be appreciated!
The text was updated successfully, but these errors were encountered: