From 3c1645eed527ebf23e32f8e83729cd9fae210194 Mon Sep 17 00:00:00 2001 From: Isaac Mills Date: Wed, 9 Jul 2025 18:55:16 -0600 Subject: [PATCH] Fix javascript --- src/partials/projects.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partials/projects.html b/src/partials/projects.html index 3f17415..cc81fa0 100644 --- a/src/partials/projects.html +++ b/src/partials/projects.html @@ -78,7 +78,7 @@ var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); var seconds = Math.floor((distance % (1000 * 60)) / 1000); - var countup = document.getElementById("c0re-countup") + var countup = document.getElementById("c0re-countup"); if (countup != null) { countup.innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s ";