diff --git a/client/audio/pop.ogg b/client/audio/pop.ogg deleted file mode 100644 index 1fe623f5..00000000 Binary files a/client/audio/pop.ogg and /dev/null differ diff --git a/client/audio/pop.wav b/client/audio/pop.wav new file mode 100644 index 00000000..07111c7e Binary files /dev/null and b/client/audio/pop.wav differ diff --git a/client/js/socket-events/configuration.js b/client/js/socket-events/configuration.js index f354d789..bf117370 100644 --- a/client/js/socket-events/configuration.js +++ b/client/js/socket-events/configuration.js @@ -26,7 +26,7 @@ socket.on("configuration", function(data) { $("#play").on("click", () => { const pop = new Audio(); - pop.src = "audio/pop.ogg"; + pop.src = "audio/pop.wav"; pop.play(); }); diff --git a/client/js/socket-events/msg.js b/client/js/socket-events/msg.js index ad0b19e0..bac4351b 100644 --- a/client/js/socket-events/msg.js +++ b/client/js/socket-events/msg.js @@ -15,7 +15,7 @@ let pop; try { pop = new Audio(); - pop.src = "audio/pop.ogg"; + pop.src = "audio/pop.wav"; } catch (e) { pop = { play: $.noop,