Skip to content

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

@mdb80

Description

@mdb80

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions