Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Intervention] error in console on 'touchmove' #3921

Closed
mdb80 opened this issue Jul 19, 2021 · 0 comments
Closed

[Intervention] error in console on 'touchmove' #3921

mdb80 opened this issue Jul 19, 2021 · 0 comments

Comments

@mdb80
Copy link

mdb80 commented Jul 19, 2021

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:

  1. Go to 'Create a swipeout and swipe"'

Screenshots

image

Additional context

To solve the problem please change " e.preventDefault(); " with:

      if (e.cancelable) {
              e.preventDefault();
      }

at line 92 of the "swipeout.js" file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant