summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortanyaionova <isaqtm@gmail.com>2019-10-15 21:11:53 +0300
committertanyaionova <isaqtm@gmail.com>2019-10-15 21:11:53 +0300
commit69e9d66a9aebbbdc7a26854f17c91f9dadd05a2e (patch)
treed441a44f2339a2d16f6a24587ef076fd3d153eb6
parent5e71985c24a912baaf4c3b9428b04c8611344f89 (diff)
downloadfcked-69e9d66a9aebbbdc7a26854f17c91f9dadd05a2e.tar.gz
Remove comment
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index 198edf6..df696fa 100644
--- a/index.html
+++ b/index.html
@@ -15,7 +15,7 @@
var years = Math.floor(distance / (1000 * 60 * 60 * 24 * 365.25));
var days = Math.floor(distance % (1000 * 60 * 60 * 24 * 365.25) / (1000 * 60 * 60 * 24));
- var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)) //+ days * 24;
+ var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
var milliseconds = Math.floor(distance % 1000);