From b0b2362145af08394bb9bc32520b27b925160dbe Mon Sep 17 00:00:00 2001
From: Greg Fodor <gfodor@gmail.com>
Date: Mon, 23 Apr 2018 13:18:42 -0700
Subject: [PATCH] Lower blur on exit to 30s

---
 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 ef1ca38fe..ae4c9c00a 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"));
-      }, 60 * 1000);
+      }, 30 * 1000);
     }
   },
 
-- 
GitLab