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