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
Using touch events on a Chromebook to scroll a view that has buttons inside it, often triggers the button "onPress" event when it should be ignored due to scrolling.
A warning "Intervention" error is displayed in the console stating:
[Intervention] Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
This is pointing to the touchEnd handling in Button.js.
To fix, seems like just an additional check on e.cancelable is all that is needed here before executing the press event methods.
The text was updated successfully, but these errors were encountered:
Using touch events on a Chromebook to scroll a view that has buttons inside it, often triggers the button "onPress" event when it should be ignored due to scrolling.
A warning "Intervention" error is displayed in the console stating:
This is pointing to the touchEnd handling in Button.js.
To fix, seems like just an additional check on e.cancelable is all that is needed here before executing the press event methods.
The text was updated successfully, but these errors were encountered: