Fix countdowns
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-12-09 17:35:56 -07:00
commit 85835a2323
Signed by: fnmain
GPG key ID: B67D7410F33A0F61

View file

@ -105,13 +105,13 @@
[]{id="c0re-appstoreCountup"} ago!
</djot>
<script>
// Code from https://www.w3schools.com/howto/howto_js_countdown.asp
// Set the date we're counting down to
var countDownDate = new Date("March 7, 2025").getTime();
// Update the count down every 1 second
var x = setInterval(countup, 1000);
function countup() {
// Code from https://www.w3schools.com/howto/howto_js_countdown.asp
// Set the date we're counting down to
var countDownDate = new Date("March 7, 2025").getTime();
// Get today's date and time
var now = new Date().getTime();
@ -135,13 +135,13 @@
}
countup();
// Code from https://www.w3schools.com/howto/howto_js_countdown.asp
// Set the date we're counting down to
var countDownDate = new Date("December 9, 2025").getTime();
// Update the count down every 1 second
var x = setInterval(appstoreCountup, 1000);
function appstoreCountup() {
// Code from https://www.w3schools.com/howto/howto_js_countdown.asp
// Set the date we're counting down to
var countDownDate = new Date("December 9, 2025").getTime();
// Get today's date and time
var now = new Date().getTime();