From 2071203061bfbb18f2c1991b45556b8ec47536a8 Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 21 Feb 2022 21:27:59 -0600 Subject: lazy-load collapsible when js is enabled makes page load a tiny bit faster --- src/lib/layout/Loader.svelte | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/lib/layout') diff --git a/src/lib/layout/Loader.svelte b/src/lib/layout/Loader.svelte index 524d975..901a780 100644 --- a/src/lib/layout/Loader.svelte +++ b/src/lib/layout/Loader.svelte @@ -5,7 +5,6 @@ let opacity = 1 function navigationStart() { - console.log('navigation start') widthTransitionDuration = 0 opacity = 1 progress = 0 @@ -15,7 +14,6 @@ }) } function navigationEnd() { - console.log('navigation end', widthTransitionDuration) opacity = 0 setTimeout(() => { widthTransitionDuration = 0 -- cgit