5 numerals

This commit is contained in:
ivan 2020-04-08 20:00:24 +03:00
parent 95bca42183
commit 7d95148cd3
1 changed files with 1 additions and 1 deletions

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];
}