From 5288bbdfa4b3435cee7c756e75f3bf36bb41d380 Mon Sep 17 00:00:00 2001 From: derheap <tobias@hiep.de> Date: Thu, 23 Dec 2021 21:39:08 +0100 Subject: [PATCH] Remove some debugging stuff. --- src/bg-eyecandy/index.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bg-eyecandy/index.html b/src/bg-eyecandy/index.html index 82c881ed7..e602a5d0c 100644 --- a/src/bg-eyecandy/index.html +++ b/src/bg-eyecandy/index.html @@ -378,7 +378,6 @@ recorded will be open sourced and will be made avaialable to download.</p></sect const main = document.querySelector('main'); const height = body.clientHeight; const maxScroll = height - window.innerHeight; - console.log(main) const setTransform = (el, factor) => { if (el) { el.style.transform ="translate3D(0,"+ window.scrollY * factor + "px,0)" @@ -405,7 +404,6 @@ recorded will be open sourced and will be made avaialable to download.</p></sect setTransform(layer10,-0.02); // Move mask for header if (main) { - console.log(main) main.style.maskPositionY = window.scrollY-320 + "px"; } -- GitLab