fix date format inconsistency across different browsers
This commit is contained in:
Родитель
1e16f1458b
Коммит
140dd850ff
7
app.js
7
app.js
|
@ -212,12 +212,7 @@
|
|||
},
|
||||
|
||||
toLocaleDate: function(date) {
|
||||
return new Date(date).toLocaleString(this.locale, {
|
||||
year: 'numeric',
|
||||
month: 'numeric',
|
||||
day: 'numeric',
|
||||
timeZone: 'UTC'
|
||||
});
|
||||
return moment(date).utc().format('l');
|
||||
},
|
||||
|
||||
showDisplay: function() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче