From 54d1ddaa4079930148871b53d25400c02565a011 Mon Sep 17 00:00:00 2001 From: voggenauerm Date: Tue, 12 Dec 2023 10:28:43 +0100 Subject: [PATCH] SPIN-126 // Reset the delay for the delayed script to the initial 3 seconds --- scripts/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/scripts.js b/scripts/scripts.js index 8093a56..a6857a8 100644 --- a/scripts/scripts.js +++ b/scripts/scripts.js @@ -227,7 +227,7 @@ async function loadLazy(doc) { */ function loadDelayed() { // eslint-disable-next-line import/no-cycle - window.setTimeout(() => import('./delayed.js'), 2000); + window.setTimeout(() => import('./delayed.js'), 3000); // load anything that can be postponed to the latest here }