Added to Step 2 and 3. Added a first new version of the progressbar + functions in Step 4. Implemented the basics and functions for Step 5

This commit is contained in:
2025-12-05 17:02:20 +01:00
parent 1c5d399c58
commit 59b820d917
4 changed files with 206 additions and 7 deletions
+6 -1
View File
@@ -103,4 +103,9 @@ prevBtn.addEventListener("click", () => {
nextBtn.addEventListener("click", () => {
if(currentStep < totalSteps) showStep(currentStep + 1);
});
});
//Speaker change listener
cur_speaker.addEventListener("change", (e) =>{
document.getElementById("speakerAudioViewer").src = valy[e.target.value].source;
})