mirror of
https://github.com/thelounge/thelounge
synced 2024-11-21 19:43:07 +00:00
Change alert sound from ogg to wav
This commit is contained in:
parent
056a38caeb
commit
8f5182b379
4 changed files with 2 additions and 2 deletions
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 a new issue