20 lines
No EOL
389 B
JavaScript
20 lines
No EOL
389 B
JavaScript
window.onload = function() {
|
|
setTimeout(function () {
|
|
play("error");
|
|
}, 1000)
|
|
}
|
|
|
|
function play(audioId) {
|
|
let audioElement = document.getElementById(audioId);
|
|
audioElement.play();
|
|
}
|
|
|
|
function close_button(href) {
|
|
play("click");
|
|
window.location.href = href;
|
|
}
|
|
|
|
function details_button() {
|
|
play("click");
|
|
// TODO: this button does nothing for now :)
|
|
} |