Commit 8061171b authored by JC Brand's avatar JC Brand

Rename the sound files to make their role clearer. updates #62

parent 73528f4c
...@@ -159,7 +159,7 @@ ...@@ -159,7 +159,7 @@
this.allow_otr = true; this.allow_otr = true;
this.animate = true; this.animate = true;
this.auto_list_rooms = false; this.auto_list_rooms = false;
this.auto_reconnect = true; this.auto_reconnect = false;
this.auto_subscribe = false; this.auto_subscribe = false;
this.bosh_service_url = undefined; // The BOSH connection manager URL. this.bosh_service_url = undefined; // The BOSH connection manager URL.
this.cache_otr_key = false; this.cache_otr_key = false;
...@@ -2456,14 +2456,14 @@ ...@@ -2456,14 +2456,14 @@
}, },
playNotification: function () { playNotification: function () {
var ping; var audio;
if (converse.play_sounds && typeof Audio !== "undefined"){ if (converse.play_sounds && typeof Audio !== "undefined"){
ping = new Audio("sounds/ping.ogg"); audio = new Audio("sounds/msg_received.ogg");
if (ping.canPlayType('audio/ogg')) { if (audio.canPlayType('/audio/ogg')) {
ping.play(); audio.play();
} else { } else {
ping = new Audio("sounds/ping.mp3"); audio = new Audio("/sounds/msg_received.mp3");
ping.play(); audio.play();
} }
} }
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment