mirror of https://gitee.com/bigwinds/arangodb
issue #189
This commit is contained in:
parent
f9e0d9fb28
commit
ae71cf201b
|
@ -50,7 +50,7 @@ function formatTimeStamp (timestamp) {
|
|||
var date = d.getUTCDate();
|
||||
|
||||
if (month < 10) month = "0" + month;
|
||||
if (date < 10) hour = "0" + date;
|
||||
if (date < 10) date = "0" + date;
|
||||
|
||||
var hour = d.getUTCHours();
|
||||
var minutes = d.getUTCMinutes();
|
||||
|
|
Loading…
Reference in New Issue