An attempt at naming the software. Closes #12

This commit is contained in:
Ian Renton
2025-09-30 22:03:22 +01:00
parent 4f4c1a9191
commit 6749a97f99
6 changed files with 43 additions and 15 deletions

View File

@@ -38,4 +38,9 @@ function escapeHtml(str) {
};
return str.replace(/[&<>"'`]/g, escapeCharacter);
}
}
// Show/hide info block
function showInfo() { $("#info-container").show(); $("#table-container").hide(); }
function hideInfo() { $("#table-container").show(); $("#info-container").hide(); }