From 47bf592db786107f0cdc67b98f55c947acdb5a51 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 7 Mar 2017 09:54:57 +0100 Subject: Try to detect iOS and *not* autoplay any videos Technically the check for iOS from components is a side effect, because it's neither in state nor props, but the user agent does not change, so I think that's okay. --- app/assets/javascripts/components/is_mobile.jsx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'app/assets/javascripts/components/is_mobile.jsx') diff --git a/app/assets/javascripts/components/is_mobile.jsx b/app/assets/javascripts/components/is_mobile.jsx index eaa6221e4..992e63727 100644 --- a/app/assets/javascripts/components/is_mobile.jsx +++ b/app/assets/javascripts/components/is_mobile.jsx @@ -3,3 +3,9 @@ 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; +}; -- cgit