summaryrefslogtreecommitdiff
path: root/resources/assets/js/moment-countdown.js
blob: d12ee7abd248c85304bfc97aeab5faa9039bdc22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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.
 */
$(document).ready(function () {
    if (typeof moment !== 'undefined') {
        moment.locale($('html').attr('lang'));

        $.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);
        });
    }
});