logging cleanup

This commit is contained in:
Jokob-sk
2022-12-25 14:25:45 +11:00
parent d6a5f23345
commit 8c8eaeb92f
10 changed files with 266 additions and 133 deletions

View File

@@ -67,6 +67,14 @@ function deleteAllCookies() {
// -----------------------------------------------------------------------------
function showModalOk (title, message) {
// set captions
$('#modal-ok-title').html (title);
$('#modal-ok-message').html (message);
// Show modal
$('#modal-ok').modal('show');
}
function showModalDefault (title, message, btnCancel, btnOK, callbackFunction) {
// set captions
$('#modal-default-title').html (title);