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", () => {
|
$("#play").on("click", () => {
|
||||||
const pop = new Audio();
|
const pop = new Audio();
|
||||||
pop.src = "audio/pop.ogg";
|
pop.src = "audio/pop.wav";
|
||||||
pop.play();
|
pop.play();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ let pop;
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
pop = new Audio();
|
pop = new Audio();
|
||||||
pop.src = "audio/pop.ogg";
|
pop.src = "audio/pop.wav";
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
pop = {
|
pop = {
|
||||||
play: $.noop,
|
play: $.noop,
|
||||||
|
Loading…
Reference in New Issue
Block a user