diff options
author | akshay | 2025-04-11 12:25:31 +0530 |
---|---|---|
committer | GitHub | 2025-04-11 12:25:31 +0530 |
commit | 967d5e949aa06c02d0ec22f14a001397c39af6e9 (patch) | |
tree | aabd837049b07713bcd7b636df029dcabde1c5a5 | |
parent | 9146dc4649162d6a555651604480d6d6e40740fc (diff) | |
download | scilab_case_study_hackathon-967d5e949aa06c02d0ec22f14a001397c39af6e9.tar.gz scilab_case_study_hackathon-967d5e949aa06c02d0ec22f14a001397c39af6e9.tar.bz2 scilab_case_study_hackathon-967d5e949aa06c02d0ec22f14a001397c39af6e9.zip |
Update temp-results.astro
-rw-r--r-- | src/pages/temp-results.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/temp-results.astro b/src/pages/temp-results.astro index f1ad016..f36297c 100644 --- a/src/pages/temp-results.astro +++ b/src/pages/temp-results.astro @@ -44,14 +44,14 @@ <script type="text/javascript"> function startCountdown(button) { button.disabled = true; - let countdown = 5; + let countdown = 3; const interval = setInterval(() => { if (countdown > 0) { - button.textContent = `🎉 Redirecting in ${countdown--}s...`; + button.textContent = `📢 Result announcement in ${countdown--}s...`; } else { clearInterval(interval); - window.location.href = '/results'; // 🔁 Update as needed + window.location.href = '/results'; } }, 1000); } |