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/user_settings.jsx | 45 +++++++++++++--------------------- 1 file changed, 17 insertions(+), 28 deletions(-) (limited to 'web/react/components/user_settings.jsx') 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 = ( ); } -- cgit v1.2.3-1-g7c22