From 7f722314e4fc21419552ec27eb91e6f7e6347b71 Mon Sep 17 00:00:00 2001 From: marudor Date: Wed, 3 Jan 2018 01:19:31 +0100 Subject: frontend stuff with babel and webpack --- public/js/moment-countdown.js | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 public/js/moment-countdown.js (limited to 'public/js/moment-countdown.js') diff --git a/public/js/moment-countdown.js b/public/js/moment-countdown.js deleted file mode 100644 index 0cc78210..00000000 --- a/public/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); - }); - } -}); -- cgit v1.2.3-54-g00ecf