Its working when i use the portrait mode, but whit the landscape its not working. It returns false. it must return true, could some one help me ? thanks.
function ismobile(){
let mobileMode;
let windowWidth = window.innerWidth;
let windowHeight = window.innerHeight;
if (windowWidth <= 375 && windowHeight <= 667 || windowWidth <= 675 && windowHeight <= 375 ) {
mobileMode = true;
}else{
mobileMode = false;
}
console.log("mobileMode " + mobileMode);
}