From d02f727bbf64c35cf4946ec469d22e9d0e37a259 Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Sun, 22 Apr 2018 13:48:20 -0700 Subject: [PATCH] Increase blur timeout to 60s --- src/systems/exit-on-blur.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systems/exit-on-blur.js b/src/systems/exit-on-blur.js index e6263a101..ef1ca38fe 100644 --- a/src/systems/exit-on-blur.js +++ b/src/systems/exit-on-blur.js @@ -13,7 +13,7 @@ AFRAME.registerSystem("exit-on-blur", { if (this.el.isMobile) { this.exitTimeout = setTimeout(() => { this.el.dispatchEvent(new CustomEvent("exit")); - }, 10 * 1000); + }, 60 * 1000); } }, -- GitLab