This commit is contained in:
EspenVista
2025-04-09 10:16:49 +01:00
parent 329cddba07
commit af1d35fc32
2 changed files with 9 additions and 40 deletions

View File

@@ -23,3 +23,12 @@ document.getElementById('ticketForm').addEventListener('submit', function (e) {
alert('Ticket(s) successfully generated!');
});
function toggleVideo() {
const video = document.getElementById('myVideo');
if (video.paused) {
video.play();
} else {
video.pause();
}
}