From 50c3c64db6f52df02bf129ad1eec16f2dd5a6d1d Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Mon, 28 Oct 2024 13:36:36 +0100 Subject: [PATCH] Delete transitionEffect.js (#177) --- wwwroot/js/transitionEffect.js | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 wwwroot/js/transitionEffect.js diff --git a/wwwroot/js/transitionEffect.js b/wwwroot/js/transitionEffect.js deleted file mode 100644 index 0cba6b31a..000000000 --- a/wwwroot/js/transitionEffect.js +++ /dev/null @@ -1,8 +0,0 @@ -function startTransitionEffect() { - const overlay = document.getElementById('transitionOverlay'); - overlay.style.transform = 'scale(1)'; - - setTimeout(() => { - window.location.href = '/user/register'; - }, 500); -}