2017-01-08 05:04:01 -05:00
|
|
|
const LAYOUT_BREAKPOINT = 1024;
|
|
|
|
|
|
|
|
export function isMobile(width) {
|
|
|
|
return width <= LAYOUT_BREAKPOINT;
|
|
|
|
};
|
2017-03-07 03:54:57 -05:00
|
|
|
|
|
|
|
const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
|
|
|
|
|
|
|
export function isIOS() {
|
|
|
|
return iOS;
|
|
|
|
};
|