From bc4fa6b198557a7f3989eb0865e2c77ac7451d29 Mon Sep 17 00:00:00 2001 From: kibigo! Date: Sun, 3 Dec 2017 23:26:40 -0800 Subject: Rename themes -> flavours ? ? --- app/javascript/themes/glitch/util/is_mobile.js | 34 -------------------------- 1 file changed, 34 deletions(-) delete mode 100644 app/javascript/themes/glitch/util/is_mobile.js (limited to 'app/javascript/themes/glitch/util/is_mobile.js') diff --git a/app/javascript/themes/glitch/util/is_mobile.js b/app/javascript/themes/glitch/util/is_mobile.js deleted file mode 100644 index 80e8e0a8a..000000000 --- a/app/javascript/themes/glitch/util/is_mobile.js +++ /dev/null @@ -1,34 +0,0 @@ -import detectPassiveEvents from 'detect-passive-events'; - -const LAYOUT_BREAKPOINT = 630; - -export function isMobile(width, columns) { - switch (columns) { - case 'multiple': - return false; - case 'single': - return true; - default: - return width <= LAYOUT_BREAKPOINT; - } -}; - -const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream; - -let userTouching = false; -let listenerOptions = detectPassiveEvents.hasSupport ? { passive: true } : false; - -function touchListener() { - userTouching = true; - window.removeEventListener('touchstart', touchListener, listenerOptions); -} - -window.addEventListener('touchstart', touchListener, listenerOptions); - -export function isUserTouching() { - return userTouching; -} - -export function isIOS() { - return iOS; -}; -- cgit