mirror of
https://github.com/thelounge/thelounge
synced 2024-11-25 05:20:21 +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", () => {
|
$("#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 a new issue