Skip to content
This repository was archived by the owner on Aug 24, 2020. It is now read-only.

Commit 3786897

Browse files
fix: fix Chrome warning
1 parent 58eddc8 commit 3786897

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<a name="3.0.0"></a>
22
## [3.0.0](https://github.com/peterpeterparker/ionic-swing/compare/v2.3.1...v3.0.0) (2018-08-28)
33
* **breaking**: Refactor components to directives in order to be compatible with Ionic v4 (>= beta.5) and/or Typescript v2.9.2
4+
* **fix**: `touchmove` set as not passive
45

56
<a name="2.3.1"></a>
67
## [2.3.1](https://github.com/peterpeterparker/ionic-swing/compare/v2.3.0...v2.3.1) (2018-08-27)

src/app/modules/ionic-swing/swing/card.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ const Card = (stack, targetElement) => {
343343
if (dragging) {
344344
event.preventDefault();
345345
}
346-
}, { passive: true });
346+
}, { passive: false });
347347
})();
348348
} else {
349349
targetElement.addEventListener('mousedown', () => {

0 commit comments

Comments
 (0)