14 lines
522 B
JavaScript
14 lines
522 B
JavaScript
$(document).ready(function () {
|
|
if (typeof moment !== "undefined") {
|
|
$.each($(".moment-countdown"), function (i, e) {
|
|
var span = $(e);
|
|
var text = span.html();
|
|
/* global moment */
|
|
var timestamp = moment(parseInt(span.attr("data-timestamp") * 1000));
|
|
span.html(text.replace("%c", timestamp.fromNow()));
|
|
setInterval(function () {
|
|
span.html(text.replace("%c", timestamp.fromNow()));
|
|
}, 1000);
|
|
});
|
|
}
|
|
}); |