(event)
| 802 | } |
| 803 | |
| 804 | var start = function start(event) { |
| 805 | if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { |
| 806 | _this3.touchStartX = event.originalEvent.clientX; |
| 807 | } else if (!_this3._pointerEvent) { |
| 808 | _this3.touchStartX = event.originalEvent.touches[0].clientX; |
| 809 | } |
| 810 | }; |
| 811 | |
| 812 | var move = function move(event) { |
| 813 | // ensure swiping with one touch and not pinching |