From 8b28772aef97372e74d5b794a40b54a81231d8a0 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 12 Apr 2017 13:23:17 -0400 Subject: [PATCH] Eliminate the very slow (3sec) transitions --- modules/ui/intro/helper.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/ui/intro/helper.js b/modules/ui/intro/helper.js index 2a144fdc3..6b19c5c38 100644 --- a/modules/ui/intro/helper.js +++ b/modules/ui/intro/helper.js @@ -109,8 +109,6 @@ export function transitionTime(point1, point2) { return 0; else if (distance < 80) return 500; - else if (distance < 160) - return 1000; else - return 3000; + return 1000; }