Use userAgentData.mobile instead of deprecated useragent. Closes #1665

This commit is contained in:
Gabe Kangas
2022-02-25 15:29:58 -08:00
parent 73b3ecaa44
commit 7fa7f8ee7f

View File

@@ -69,10 +69,7 @@ export function hasTouchScreen() {
hasTouch = true; // deprecated, but good fallback hasTouch = true; // deprecated, but good fallback
} else { } else {
// Only as a last resort, fall back to user agent sniffing // Only as a last resort, fall back to user agent sniffing
var UA = navigator.userAgent; hasTouch = navigator.userAgentData.mobile;
hasTouch =
/\b(BlackBerry|webOS|iPhone|IEMobile)\b/i.test(UA) ||
/\b(Android|Windows Phone|iPad|iPod)\b/i.test(UA);
} }
} }
return hasTouch; return hasTouch;