From dd5056a16c47e15d81c9278a26958da35b3d5d02 Mon Sep 17 00:00:00 2001 From: MrLetsplay Date: Fri, 8 Mar 2024 19:54:36 +0100 Subject: [PATCH] unset --- special/april-fools.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/special/april-fools.js b/special/april-fools.js index 007c7b1..7c3779d 100644 --- a/special/april-fools.js +++ b/special/april-fools.js @@ -4,8 +4,8 @@ let OVERRIDE_APRIL_FOOLS = false; setInterval(() => { const theTime = new Date(); if (!OVERRIDE_APRIL_FOOLS && (theTime.getDate() != 1 || theTime.getMonth() != 3)) { - document.body.style.transition = undefined; - document.body.style.transform = undefined; + document.body.style.transition = "unset"; + document.body.style.transform = "unset"; return; }