fix touch events (#11265)

This commit is contained in:
Josh Hawkins
2024-05-06 13:35:18 -05:00
committed by GitHub
parent 306c11d730
commit c0073db859
3 changed files with 6 additions and 6 deletions

View File

@@ -98,7 +98,7 @@ export default function LiveCameraView({ camera }: LiveCameraViewProps) {
let clientX;
let clientY;
if (e.nativeEvent instanceof TouchEvent) {
if ("TouchEvent" in window && e.nativeEvent instanceof TouchEvent) {
clientX = e.nativeEvent.touches[0].clientX;
clientY = e.nativeEvent.touches[0].clientY;
} else if (e.nativeEvent instanceof MouseEvent) {