From 757d87946931620cf5fe84ec5f163edd6f3986f8 Mon Sep 17 00:00:00 2001 From: marudor Date: Thu, 8 Feb 2018 23:01:43 +0100 Subject: changes based on igels review --- js/moment-countdown.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 js/moment-countdown.js (limited to 'js/moment-countdown.js') diff --git a/js/moment-countdown.js b/js/moment-countdown.js new file mode 100644 index 00000000..78bf3f9d --- /dev/null +++ b/js/moment-countdown.js @@ -0,0 +1,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); + }); + } +}); \ No newline at end of file -- cgit v1.2.3-70-g09d2