summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings/user_settings_notifications.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-09-24 10:58:06 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-09-24 10:58:49 -0400
commita59f8def8c6fa2bc87e3dc0ee9ff5a3caf157c4a (patch)
tree6356dbb6fadffc22a33d52febcb2eb4f300bb87d /web/react/components/user_settings/user_settings_notifications.jsx
parentd5343f997d8d239f09a93a05d8affd8387bb46bc (diff)
downloadchat-a59f8def8c6fa2bc87e3dc0ee9ff5a3caf157c4a.tar.gz
chat-a59f8def8c6fa2bc87e3dc0ee9ff5a3caf157c4a.tar.bz2
chat-a59f8def8c6fa2bc87e3dc0ee9ff5a3caf157c4a.zip
Added help text to notification settings to say which browsers support them
Diffstat (limited to 'web/react/components/user_settings/user_settings_notifications.jsx')
-rw-r--r--web/react/components/user_settings/user_settings_notifications.jsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/web/react/components/user_settings/user_settings_notifications.jsx b/web/react/components/user_settings/user_settings_notifications.jsx
index 8d364cde7..ba14f019f 100644
--- a/web/react/components/user_settings/user_settings_notifications.jsx
+++ b/web/react/components/user_settings/user_settings_notifications.jsx
@@ -265,9 +265,12 @@ export default class NotificationsTab extends React.Component {
e.preventDefault();
}.bind(this);
+ const extraInfo = <span>{'Desktop notifications are available on Firefox, Safari, and Chrome.'}</span>;
+
desktopSection = (
<SettingItemMax
title='Send desktop notifications'
+ extraInfo={extraInfo}
inputs={inputs}
submit={this.handleSubmit}
server_error={serverError}
@@ -343,9 +346,12 @@ export default class NotificationsTab extends React.Component {
e.preventDefault();
}.bind(this);
+ const extraInfo = <span>{'Desktop notification sounds are available on Firefox, Safari, Chrome, Internet Explorer, and Edge.'}</span>;
+
soundSection = (
<SettingItemMax
title='Desktop notification sounds'
+ extraInfo={extraInfo}
inputs={inputs}
submit={this.handleSubmit}
server_error={serverError}