summaryrefslogtreecommitdiff
path: root/frontend/js/moment-countdown.js
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2018-08-11 22:16:57 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-11 22:16:57 +0200
commit28349b69a8e591ddd2472bd53a3029de96444696 (patch)
tree77e5575fb777768718546a398fa797c041117970 /frontend/js/moment-countdown.js
parent3d245660c53da4b4da832c3139329e091dbfac3d (diff)
Changed JS to use single quotes instead of double quotes
Diffstat (limited to 'frontend/js/moment-countdown.js')
-rw-r--r--frontend/js/moment-countdown.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/js/moment-countdown.js b/frontend/js/moment-countdown.js
index feb7b604..f5effbc0 100644
--- a/frontend/js/moment-countdown.js
+++ b/frontend/js/moment-countdown.js
@@ -1,18 +1,18 @@
/*
* Initialize all moment countdowns on the page. A moment countdown has the
- * class "moment-countdown" and the attribute "data-timestamp" which defines 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) {
+ 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()));
+ 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()));
+ span.html(text.replace('%c', timestamp.fromNow()));
}, 1000);
});
}