blob: 5898aeaece28a31abfd6f4bf5cc5554fb5aefe3c (
plain)
1
2
3
4
5
6
7
8
|
export function initializeTada(source) {
const audioElement = document.createElement("audio");
audioElement.setAttribute("class", "junction-tada");
audioElement.src = source;
document.querySelector("body").appendChild(audioElement);
return () => audioElement.play();
}
|