Integrated the help page into the base files and added more exception handling

This commit is contained in:
2026-01-21 14:01:34 +01:00
parent bb0ad2b621
commit 2627e5f44e
5 changed files with 327 additions and 289 deletions
+25 -1
View File
@@ -530,4 +530,28 @@ function sendSpeakerPackages() {
}
}
window.sendSpeakerPackages = sendSpeakerPackages;
window.sendSpeakerPackages = sendSpeakerPackages;
/*
Functions for the help page
*/
//Function to show the dropdown list in the help page
function toggleTOC() {
try {
document.getElementById("toc").classList.toggle("show");
} catch (error) {
console.log(error)
}
}
//Function to hide the dropdown list in the help page
function closeTOC() {
try {
document.getElementById("toc").classList.remove("show");
} catch (error) {
console.log(error)
}
}