about summary refs log tree commit diff
path: root/app/javascript/mastodon/is_mobile.js
blob: 992e63727a6c061730b3c8d85bc520bb4293aac4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
const LAYOUT_BREAKPOINT = 1024;

export function isMobile(width) {
  return width <= LAYOUT_BREAKPOINT;
};

const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;

export function isIOS() {
  return iOS;
};