(e)
| 401 | } |
| 402 | }, |
| 403 | onClick(e) { |
| 404 | // Handle NVDA/JAWS in browse mode, and touch screen readers. In this case, no keyboard events are fired. |
| 405 | if (isVirtualClick(e.nativeEvent) || modalityOnPointerDown.current === 'virtual') { |
| 406 | e.preventDefault(); |
| 407 | e.stopPropagation(); |
| 408 | startDragging(getEventTarget(e)); |
| 409 | } |
| 410 | } |
| 411 | }; |
| 412 | } |
| 413 |