summaryrefslogtreecommitdiff
path: root/js/moment-countdown.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/moment-countdown.js')
-rw-r--r--js/moment-countdown.js14
1 files changed, 14 insertions, 0 deletions
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