5 numerals

This commit is contained in:
2020-04-08 20:00:24 +03:00
parent 95bca42183
commit 7d95148cd3

View File

@@ -106,7 +106,7 @@ function dtime(gregorianDate) {
m = Math.floor(ds/100);
ds%= 100;
s = ds;
var dtimestr = az(h)+":"+az(m)+":"+az(s);
var dtimestr = h+":"+az(m)+":"+az(s);
return [ddatestr, dtimestr, ddaystr];
}