2021-06-10 18:32:16 +00:00
|
|
|
function isMobile() {
|
2021-06-11 05:55:46 +00:00
|
|
|
let mobileDeviceIndicator = 0;
|
|
|
|
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
|
2021-06-10 18:32:16 +00:00
|
|
|
mobileDeviceIndicator = 1;
|
|
|
|
}
|
|
|
|
/*
|
2021-06-11 05:55:46 +00:00
|
|
|
let hasTouchscreen = 'ontouchstart' in window;
|
|
|
|
alert(hasTouchscreen ? 'has touchscreen' : 'doesn\'t have touchscreen');
|
|
|
|
*/
|
2021-06-10 18:32:16 +00:00
|
|
|
}
|
|
|
|
|