(e: PointerEvent)
| 123 | * text-selection drag on content can't authorize a detach. |
| 124 | */ |
| 125 | const onPointerDown = (e: PointerEvent) => { |
| 126 | if (e.target === el) pointerDownRef.current = true |
| 127 | } |
| 128 | const onPointerUp = () => { |
| 129 | pointerDownRef.current = false |
| 130 | } |