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
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

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