1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-29 07:18:54 +09:00
YuruToot/app/javascript/mastodon/is_mobile.js

12 lines
230 B
JavaScript
Raw Normal View History

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;
};