From 50bf7688faf47fb73042d5a40669cd88ef4a59a8 Mon Sep 17 00:00:00 2001 From: Christopher Van Wiemeersch <hearcomestreble@gmail.com> Date: Tue, 1 May 2018 20:35:03 -0700 Subject: [PATCH] remove `inIframe` check --- src/react-components/home-root.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/react-components/home-root.js b/src/react-components/home-root.js index 01876f43f..df85b4256 100644 --- a/src/react-components/home-root.js +++ b/src/react-components/home-root.js @@ -38,10 +38,12 @@ class HomeRoot extends Component { function initVideo() { videoEl.playbackRate = 0.75; videoEl.play(); - let inIframe = !!window.frameElement; function toggleVideo() { - // Play the video if the window/tab is visible (or is within an `<iframe>`). - if (document.hasFocus() || inIframe) { + // Play the video if the window/tab is visible. + if (!("hasFocus" in document)) { + return; + } + if (document.hasFocus()) { videoEl.play(); } else { videoEl.pause(); -- GitLab