summaryrefslogtreecommitdiff
path: root/frontend/js/moment-countdown.js
diff options
context:
space:
mode:
authormarudor <marudor@marudor.de>2018-05-03 17:33:49 +0200
committermarudor <marudor@marudor.de>2018-05-03 17:33:49 +0200
commitba4ab7dbc102c43a861654910ba33989021e9c8b (patch)
tree47ee466231e8596f986c702fc4b9624b8ca2a3d6 /frontend/js/moment-countdown.js
parent757d87946931620cf5fe84ec5f163edd6f3986f8 (diff)
add documentation, include old custom font again
Diffstat (limited to 'frontend/js/moment-countdown.js')
-rw-r--r--frontend/js/moment-countdown.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/frontend/js/moment-countdown.js b/frontend/js/moment-countdown.js
new file mode 100644
index 00000000..feb7b604
--- /dev/null
+++ b/frontend/js/moment-countdown.js
@@ -0,0 +1,19 @@
+/*
+ * 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") {
+ $.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);
+ });
+ }
+});