-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Closed
Description
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
Metadata
Metadata
Assignees
Labels
No labels
