Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* All JavaScript here will be loaded for users of the mobile site */
/*
const countDownDate = 'January 21 2021 07:00:00 GMT+0000';
function getTimeRemaining(endtime) {
const total = Date.parse(endtime) - Date.parse(new Date());
const seconds = Math.floor((total / 1000) % 60);
const minutes = Math.floor((total / 1000 / 60) % 60);
const hours = Math.floor((total / (1000 * 60 * 60)) % 24);
const days = Math.floor(total / (1000 * 60 * 60 * 24));
return {
total: total,
days: days,
hours: hours,
minutes: minutes,
seconds: seconds
};
}
function tick(id, endtime) {
const clock = document.getElementById(id);
if(clock != null)
{
const t = getTimeRemaining(endtime);
clock.innerHTML = t.days + "d " + t.hours + "h " + t.minutes + "m " + t.seconds + "s ";
if (t.total <= 0) { clearInterval(timeinterval); }
}
}
function initializeClock(id, endtime) {
const timeinterval = setInterval(function() { tick(id, endtime) }, 1000);
tick(id, endtime);
}
initializeClock('launch_timer', countDownDate);
*/