From 3ccf0e6ccbb2504e88bd790b1a3b44d08e8c2dc4 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 20 Feb 2020 08:51:44 -0500 Subject: [PATCH] Preload intro graph data while the user is viewing the splash screen --- modules/ui/splash.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/ui/splash.js b/modules/ui/splash.js index 11e395eac..d07c50980 100644 --- a/modules/ui/splash.js +++ b/modules/ui/splash.js @@ -23,6 +23,9 @@ export function uiSplash(context) { context.storage('sawSplash', true); context.storage('sawPrivacyVersion', context.privacyVersion); + // fetch intro graph data now, while user is looking at the splash screen + context.data().get('intro_graph'); + let modalSelection = uiModal(selection); modalSelection.select('.modal')