21 lines
435 B
JavaScript
21 lines
435 B
JavaScript
|
function fancydates(fanciness, date_format) {
|
||
|
if (fanciness == 0) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
dates = $('time.published.dt-published');
|
||
|
|
||
|
i = 0;
|
||
|
l = dates.length;
|
||
|
|
||
|
for (i = 0; i < l; i++) {
|
||
|
d = moment(dates[i].attributes.datetime.value);
|
||
|
if (fanciness == 1) {
|
||
|
o = d.local().format(date_format);
|
||
|
} else {
|
||
|
o = d.fromNow();
|
||
|
}
|
||
|
dates[i].innerHTML = o;
|
||
|
}
|
||
|
}
|