Handed control of notification sounds over to browser for firefox

Этот коммит содержится в:
nickago
2015-08-12 15:27:46 -07:00
родитель b50ba05626
Коммит 0b22bb25c1
2 изменённых файлов: 35 добавлений и 18 удалений

Просмотреть файл

@@ -124,8 +124,10 @@ module.exports.notifyMe = function(title, body, channel) {
}
module.exports.ding = function() {
var audio = new Audio('/static/images/ding.mp3');
audio.play();
if (!navigator || navigator.userAgent.toLowerCase().indexOf("firefox") === -1) {
var audio = new Audio('/static/images/ding.mp3');
audio.play();
}
}
module.exports.getUrlParameter = function(sParam) {