engelsystem/resources/assets/js/moment-countdown.js

22 lines
761 B
JavaScript
Raw Normal View History

/*
* Initialize all moment countdowns on the page. A moment countdown has the
* class 'moment-countdown' and the attribute 'data-timestamp' which defines the
* countdown's time goal.
*/
2018-02-08 23:01:43 +01:00
$(document).ready(function () {
if (typeof moment !== 'undefined') {
moment.locale($('html').attr('lang'));
$.each($('.moment-countdown'), function (i, e) {
2018-02-08 23:01:43 +01:00
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()));
2018-02-08 23:01:43 +01:00
setInterval(function () {
span.html(text.replace('%c', timestamp.fromNow()));
2018-02-08 23:01:43 +01:00
}, 1000);
});
}
});