check if date value is NaN before applying it
Cette révision appartient à :
Parent
c78492b43e
révision
670d5620cc
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -60,7 +60,7 @@ function parseAllDates() {
|
|||
for(var i = 0; i < list.length; i++) {
|
||||
var e = list[i]
|
||||
var newDate = new Date(e.title)
|
||||
if(newDate == "Invalid Date") continue
|
||||
if(isNaN(newDate.valueOf())) continue
|
||||
e.innerText = newDate.toLocaleString(lang, ymdOpt)
|
||||
e.title = newDate.toLocaleString(lang)
|
||||
}
|
||||
|
|
Référencer dans un nouveau ticket