Files
nutty-tools/clock-widget/script.js
T
2025-03-23 22:04:07 +11:00

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();