move browser check functionality into a method

Этот коммит содержится в:
nickago
2015-08-14 14:21:41 -07:00
родитель 2f431240a4
Коммит 63005366ad
2 изменённых файлов: 6 добавлений и 2 удалений

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

@@ -13,7 +13,7 @@ var assign = require('object-assign');
function getNotificationsStateFromStores() {
var user = UserStore.getCurrentUser();
var soundNeeded = (!navigator || !navigator.userAgent || navigator.userAgent.toLowerCase().indexOf("firefox") === -1);
var soundNeeded = !utils.checkBrowserType('firefox');
var sound = (!user.notify_props || user.notify_props.desktop_sound == undefined) ? "true" : user.notify_props.desktop_sound;
var desktop = (!user.notify_props || user.notify_props.desktop == undefined) ? "all" : user.notify_props.desktop;
var email = (!user.notify_props || user.notify_props.email == undefined) ? "true" : user.notify_props.email;

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

@@ -124,7 +124,7 @@ module.exports.notifyMe = function(title, body, channel) {
}
module.exports.ding = function() {
if (!navigator || !navigator.userAgent || navigator.userAgent.toLowerCase().indexOf("firefox") === -1) {
if (!module.exports.checkBrowserType('firefox')) {
var audio = new Audio('/static/images/ding.mp3');
audio.play();
}
@@ -936,3 +936,7 @@ module.exports.generateId = function() {
return id;
};
module.exports.checkBrowserType = function(browser) {
return navigator && navigator.userAgent && navigator.userAgent.toLowerCase().indexOf(browser.toLowerCase()) > -1
}