isMobile() { return Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(userAgent); }기존 이렇게 모바일 기기를 확인했다. 아이패드가 안잡힌다.isMobile() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; console.log("userAgent:", userAgent); // 터치 장치 확인 const isTouchDevice = 'maxTouchPoints' in navigator ? navigator.maxTouchPoints > 0 : false; conso..