Use userAgentData.mobile instead of deprecated useragent. Closes #1665
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user