The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

21 řádky
407 B

  1. const LAYOUT_BREAKPOINT = 1024;
  2. export function isMobile(width) {
  3. return width <= LAYOUT_BREAKPOINT;
  4. };
  5. const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
  6. let userTouching = false;
  7. window.addEventListener('touchstart', () => {
  8. userTouching = true;
  9. }, { once: true });
  10. export function isUserTouching() {
  11. return userTouching;
  12. }
  13. export function isIOS() {
  14. return iOS;
  15. };