summaryrefslogtreecommitdiff
path: root/frontend/js/moment-countdown.js
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-09-10 17:22:05 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-09-10 18:22:48 +0200
commitc1a1180d1f43a430b38450cb0b64bcd74487b4ae (patch)
treed2e532f8f7f3233517dd1ad8de5cb1b7e1ccc5ad /frontend/js/moment-countdown.js
parent4bf3a68f43e4fcea34fe0a16cb3e1eecb97d332a (diff)
Moved frontend, templates and lang to resources
Diffstat (limited to 'frontend/js/moment-countdown.js')
-rw-r--r--frontend/js/moment-countdown.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/frontend/js/moment-countdown.js b/frontend/js/moment-countdown.js
deleted file mode 100644
index f5effbc0..00000000
--- a/frontend/js/moment-countdown.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * 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);
- });
- }
-});