Cleanup - fix two broken script paths and drop 29 dead/duplicate files (348KB of unused FullCalendar themes)

This commit is contained in:
johnnyq
2026-08-28 00:01:44 -04:00
parent 1119e13e5d
commit 8f884f789a
33 changed files with 12 additions and 9133 deletions

View File

@@ -1,16 +0,0 @@
function showOTPViaCredentialID(credential_id) {
// Send a GET request to ajax.php as ajax.php?get_totp_token_via_id=true&credential_id=ID
itflowGet(
"../ajax.php", {
get_totp_token_via_id: 'true',
credential_id: credential_id
},
function(data) {
//If we get a response from post.php, parse it as JSON
const token = JSON.parse(data);
document.getElementById("otp_" + credential_id).innerText = token
}
);
}