We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481bdcf commit a067f8cCopy full SHA for a067f8c
src/components/carousel/carousel.js
@@ -402,7 +402,7 @@ export default {
402
},
403
touchMove(evt) /* istanbul ignore next: JSDOM doesn't support touch events */ {
404
// ensure swiping with one touch and not pinching
405
- if (evt.touches && evt.originalEvent.touches.length > 1) {
+ if (evt.touches && evt.touches.length > 1) {
406
this.touchDeltaX = 0
407
} else {
408
this.touchDeltaX = evt.touches[0].clientX - this.touchStartX
0 commit comments