summaryrefslogtreecommitdiff
path: root/js/moment-countdown.js
blob: 78bf3f9dd2921e57ac9dcea396eac85fcefa6422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(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);
        });
    }
});