[Web] Do not print invalid date
parent
02fd0b03f6
commit
fee4b50b9b
|
@ -6,15 +6,19 @@ $(document).ready(function() {
|
||||||
var started_s_ago = parseInt($(this).text(), 10);
|
var started_s_ago = parseInt($(this).text(), 10);
|
||||||
if (typeof started_s_ago != 'NaN') {
|
if (typeof started_s_ago != 'NaN') {
|
||||||
var started_date = new Date((ts_now - started_s_ago) * 1000);
|
var started_date = new Date((ts_now - started_s_ago) * 1000);
|
||||||
var started_local_date = started_date.toLocaleDateString(undefined, {
|
if (started_date instanceof Date && !isNaN(started_date)) {
|
||||||
year: "numeric",
|
var started_local_date = started_date.toLocaleDateString(undefined, {
|
||||||
month: "2-digit",
|
year: "numeric",
|
||||||
day: "2-digit",
|
month: "2-digit",
|
||||||
hour: "2-digit",
|
day: "2-digit",
|
||||||
minute: "2-digit",
|
hour: "2-digit",
|
||||||
second: "2-digit"
|
minute: "2-digit",
|
||||||
});
|
second: "2-digit"
|
||||||
$(this).text(started_local_date);
|
});
|
||||||
|
$(this).text(started_local_date);
|
||||||
|
} else {
|
||||||
|
$(this).text('-');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Parse general dates
|
// Parse general dates
|
||||||
|
|
Loading…
Reference in New Issue