mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
Integrated the help page into the base files and added more exception handling
This commit is contained in:
+25
-1
@@ -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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user