(e)
| 132 | } |
| 133 | |
| 134 | handleTouchStart(e) { |
| 135 | if (!this.props.enableTouch) { |
| 136 | return; |
| 137 | } |
| 138 | this.touchStartX = e.changedTouches[0].screenX; |
| 139 | this.touchStartY = e.changedTouches[0].screenY; |
| 140 | } |
| 141 | |
| 142 | handleTouchEnd(e) { |
| 143 | if (!this.props.enableTouch) { |
nothing calls this directly
no outgoing calls
no test coverage detected