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
Error: [Intervention] Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
#30
It happens when you are doing scrolling and you try to move one slide at a time.
I think the fix can be add "event.cancelable":
`
// if user is not trying to scroll vertically
if (event.cancelable && !isScrolling) {
// prevent native scrolling
event.preventDefault();
`
The text was updated successfully, but these errors were encountered: