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
Framework7 version: 6.0.22
Platform and Target:Cordova app + Chrome browser
Describe the bug
An error occurred when swipe a swipeout on console
[Intervention] Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
To Reproduce
Steps to reproduce the behavior:
Go to 'Create a swipeout and swipe"'
Screenshots
Additional context
To solve the problem please change " e.preventDefault(); " with:
if (e.cancelable) {
e.preventDefault();
}
at line 92 of the "swipeout.js" file
The text was updated successfully, but these errors were encountered:
Framework7 version: 6.0.22
Platform and Target:Cordova app + Chrome browser
Describe the bug
An error occurred when swipe a swipeout on console
[Intervention] Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
To Reproduce
Steps to reproduce the behavior:
Screenshots
Additional context
To solve the problem please change " e.preventDefault(); " with:
at line 92 of the "swipeout.js" file
The text was updated successfully, but these errors were encountered: