delete unused file

master
Aevann 2023-10-12 22:43:35 +03:00
parent dd1a94b4bc
commit 55f05bf95c
1 changed files with 0 additions and 9 deletions

View File

@ -1,9 +0,0 @@
const song = document.getElementById('event-song').value;
const audio = new Audio(song);
audio.loop = true;
audio.play();
document.addEventListener('click', () => {
if (audio.paused) audio.play();
}, {once : true});
prepare_to_pause(audio)