(e)
| 41 | } |
| 42 | |
| 43 | onTouchStart(e) { |
| 44 | this.setOffset(e); |
| 45 | this.checkTouch({ |
| 46 | x: e.touches[0].pageX - this.offsetX, |
| 47 | y: e.touches[0].pageY - this.offsetY |
| 48 | }); |
| 49 | } |
| 50 | |
| 51 | onTouchMove(e) { |
| 52 | this.moveDraw(e) |
nothing calls this directly
no test coverage detected