소스 검색

Check whether we swiped only for mouse pointer

Tusooa Zhu 3 년 전
부모
커밋
a485ebc2bb
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/services/gesture_service/gesture_service.js

+ 5 - 1
src/services/gesture_service/gesture_service.js

@@ -190,7 +190,11 @@ class SwipeAndClickGesture {
       this.swipeEndCallback(sign)
     }
     this._reset()
-    if (swiped) {
+    // Only a mouse will fire click event when
+    // the end point is far from the starting point
+    // so for other kinds of pointers do not check
+    // whether we have swiped
+    if (swiped && event.pointerType === 'mouse') {
       this._preventNextClick = true
     }
   }