(e: TouchEvent)
| 92 | * @param {Object} e The document's touchmove event |
| 93 | */ |
| 94 | export function touchmove(e: TouchEvent): void { |
| 95 | // Ignore event if not handled by us |
| 96 | if (!DDTouch.touchHandled) return; |
| 97 | |
| 98 | simulateMouseEvent(e, 'mousemove'); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Handle the touchend events |
no test coverage detected