Change alert sound from ogg to wav

This commit is contained in:
realies 2018-07-17 09:14:58 +03:00
parent 056a38caeb
commit 8f5182b379
4 changed files with 2 additions and 2 deletions

Binary file not shown.

BIN
client/audio/pop.wav Normal file

Binary file not shown.

View file

@ -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();
});

View file

@ -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,