mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:13:05 +02:00
Minor adjustments
Minor adjustments
This commit is contained in:
parent
a264fc358e
commit
1e51df0843
1 changed files with 5 additions and 3 deletions
|
@ -236,7 +236,7 @@ EntityListTool = function(shouldUseEditTabletApp) {
|
|||
hasScript: properties.script !== "",
|
||||
parentState: parentState,
|
||||
created: formatToStringDateTime(properties.created),
|
||||
lastEdited: formatToStringDateTime(properties.lastEdited),
|
||||
lastEdited: formatToStringDateTime(properties.lastEdited)
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -266,7 +266,9 @@ EntityListTool = function(shouldUseEditTabletApp) {
|
|||
|
||||
function zeroPad(num, size) {
|
||||
num = num.toString();
|
||||
while (num.length < size) num = "0" + num;
|
||||
while (num.length < size) {
|
||||
num = "0" + num;
|
||||
}
|
||||
return num;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue