fix date format inconsistency across different browsers

This commit is contained in:
Fabio Vilela 2016-02-23 09:30:47 +11:00
Родитель 1e16f1458b
Коммит 140dd850ff
1 изменённых файлов: 1 добавлений и 6 удалений

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() {