Merge pull request #2655 from realies/master
Change alert sound from ogg to wav
This commit is contained in:
commit
390d7c22ca
Binary file not shown.
BIN
client/audio/pop.wav
Normal file
BIN
client/audio/pop.wav
Normal file
Binary file not shown.
@ -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();
|
||||
});
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user