mirror of
https://github.com/nuttylmao/nutty.gg.git
synced 2026-09-19 12:10:59 -04:00
19 lines
437 B
JavaScript
19 lines
437 B
JavaScript
////////////////////
|
|
// URL PARAMETERS //
|
|
////////////////////
|
|
|
|
const queryString = window.location.search;
|
|
const urlParams = new URLSearchParams(queryString);
|
|
const dateFormat = urlParams.get("dateFormat") || 'ddd DD MMM yyyy hh:mm:ss A';
|
|
|
|
///////////////
|
|
// FUNCTIONS //
|
|
///////////////
|
|
|
|
function setTime()
|
|
{
|
|
document.getElementById("timeLabel").innerHTML = moment().format(dateFormat);
|
|
setTimeout(setTime, 1000);
|
|
}
|
|
|
|
setTime(); |