1
0
Fork 0
mirror of https://github.com/Oreolek/oreolek.ru.git synced 2024-06-01 07:48:14 +03:00
oreolek.ru/application/assets/javascript/common.js

8 lines
161 B
JavaScript
Raw Normal View History

2014-06-20 12:28:57 +03:00
$('.date').each(function(){
if ($(this).text() != '')
{
2018-03-22 18:27:26 +02:00
var day = moment($(this).text());
2014-08-29 08:57:55 +03:00
$(this).text(day.fromNow()+", "+day.format('LL'));
}
2014-06-20 12:28:57 +03:00
});