Revert "added event listener to play chime on the first click"

This reverts commit 4885a76a75.
This commit is contained in:
Eric Dubé 2024-11-15 13:41:03 -05:00
parent fa5d731641
commit 5fd11cc607

View File

@ -155,11 +155,8 @@ if(jQuery){
window.playStartUpChime = ()=>{ window.playStartUpChime = ()=>{
let audio = new Audio('/src/audio/puter_chime.mp3'); let audio = new Audio('/src/audio/puter_chime.mp3');
audio.play(); audio.play();
document.removeEventListener("click", window.playStartUpChime);
} }
document.addEventListener("click", window.playStartUpChime);
window.initgui = async function(options){ window.initgui = async function(options){
let url = new URL(window.location); let url = new URL(window.location);
url = url.href; url = url.href;