Add files via upload

This commit is contained in:
nuttylmao
2025-03-23 22:04:07 +11:00
committed by GitHub
parent f133722899
commit 6c53d973f7
97 changed files with 15625 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
////////////////////
// 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();