commit | 9a3f3dd5de7c6a1af3fc35665bd43600caebdb80 | [log] [tgz] |
---|---|---|
author | avm99963 <me@avm99963.com> | Tue Sep 29 08:39:47 2020 +0200 |
committer | avm99963 <me@avm99963.com> | Tue Sep 29 08:39:47 2020 +0200 |
tree | 181795e73b4be35a19b02bd12891e8e53a46cbec | |
parent | dbdc965fd9688e9717fb2e70acdccc468d494351 [diff] |
Les hores ara ja no comencen amb un 0 Al formulari les hores no són de l'estil 09:00 sinó 9:00. Aquest commit soluciona aquest problema.
diff --git a/index.html b/index.html index 3c073c4..044db2d 100644 --- a/index.html +++ b/index.html
@@ -75,7 +75,6 @@ function formatDate(d) { var str = ""; - if (d.getHours() < 10) str += "0"; str += d.getHours(); str += ":"; if (d.getMinutes() < 10) str += "0";