2024-05-01 23:56:10 +03:00
|
|
|
window.onload = function() {
|
2024-05-02 17:48:27 +03:00
|
|
|
setTimeout(function () {
|
|
|
|
play("error");
|
|
|
|
}, 1000)
|
2024-05-02 15:12:39 +03:00
|
|
|
}
|
2024-05-01 23:56:10 +03:00
|
|
|
|
2024-05-02 15:12:39 +03:00
|
|
|
function play(audioId) {
|
|
|
|
let audioElement = document.getElementById(audioId);
|
2024-05-02 17:48:27 +03:00
|
|
|
audioElement.play();
|
2024-05-02 15:12:39 +03:00
|
|
|
}
|
2024-05-01 23:56:10 +03:00
|
|
|
|
2024-05-02 15:12:39 +03:00
|
|
|
function close_button(href) {
|
2024-05-01 23:56:10 +03:00
|
|
|
play("click");
|
|
|
|
window.location.href = href;
|
2024-05-02 15:12:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function details_button() {
|
|
|
|
play("click");
|
|
|
|
// TODO: this button does nothing for now :)
|
|
|
|
}
|