From 6abb450c333d3d2e8be3110a35ac649edf4f329d Mon Sep 17 00:00:00 2001 From: Michi Date: Sun, 31 Jul 2022 11:33:54 +0200 Subject: [PATCH] Update countdown.html --- countdown.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/countdown.html b/countdown.html index abff8fa..8fdaee2 100644 --- a/countdown.html +++ b/countdown.html @@ -11,6 +11,7 @@ + @@ -18,9 +19,9 @@ - + - + @@ -118,7 +119,7 @@ function countdown(){ // Thanks to https://youtu.be/uoMkz1cXOcY - var releaseDate = new Date('August 14, 2022 12:00:00'); + var releaseDate = new Date('August 7, 2022 12:00:00'); var currentDate = new Date(); var difference = releaseDate.getTime() - currentDate.getTime(); var days = Math.floor(difference / (1000 * 60 * 60 * 24));