From c5ee567bacbc55372d526c668fa138c80545498e Mon Sep 17 00:00:00 2001 From: nickago Date: Thu, 13 Aug 2015 08:50:40 -0700 Subject: Refactored such that the menu doesn't open for firefox users --- web/react/components/setting_item_min.jsx | 6 ++++- web/react/components/user_settings.jsx | 45 ++++++++++++------------------- web/react/utils/utils.jsx | 2 +- 3 files changed, 23 insertions(+), 30 deletions(-) (limited to 'web/react') diff --git a/web/react/components/setting_item_min.jsx b/web/react/components/setting_item_min.jsx index 2209c74d1..135226900 100644 --- a/web/react/components/setting_item_min.jsx +++ b/web/react/components/setting_item_min.jsx @@ -3,10 +3,14 @@ module.exports = React.createClass({ render: function() { + var editButton = ''; + if(!this.props.disableOpen) { + editButton =
  • Edit
  • ; + } return ( ); diff --git a/web/react/components/user_settings.jsx b/web/react/components/user_settings.jsx index fa01d62c2..0dfea6543 100644 --- a/web/react/components/user_settings.jsx +++ b/web/react/components/user_settings.jsx @@ -236,36 +236,24 @@ var NotificationsTab = React.createClass({ } var soundSection; - if (this.props.activeSection === 'sound') { - var inputs = []; + if (this.props.activeSection === 'sound' && this.state.soundNeeded) { + var soundActive = ["",""]; + if (this.state.enable_sound === "false") { + soundActive[1] = "active"; + } else { + soundActive[0] = "active"; + } - if(this.state.soundNeeded) { - var soundActive = ["",""]; - if (this.state.enable_sound === "false") { - soundActive[1] = "active"; - } else { - soundActive[0] = "active"; - } + var inputs = []; - inputs.push( -
    -
    - - -
    -
    - ); - } else { - inputs.push( -
    -
    - - -
    -

    Please disable notification sounds in your browser settings
    + inputs.push( +
    +
    + +
    - ) - } +
    + ); soundSection = ( ); } diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx index b1832f3f1..6236e11dd 100644 --- a/web/react/utils/utils.jsx +++ b/web/react/utils/utils.jsx @@ -124,7 +124,7 @@ module.exports.notifyMe = function(title, body, channel) { } module.exports.ding = function() { - if (!navigator || navigator.userAgent.toLowerCase().indexOf("firefox") === -1) { + if (!navigator || !navigator.userAgent || navigator.userAgent.toLowerCase().indexOf("firefox") === -1) { var audio = new Audio('/static/images/ding.mp3'); audio.play(); } -- cgit v1.2.3-1-g7c22