Added help text to notification settings to say which browsers support them

Этот коммит содержится в:
hmhealey
2015-09-24 10:58:06 -04:00
родитель d5343f997d
Коммит a59f8def8c
2 изменённых файлов: 20 добавлений и 2 удалений

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

@@ -163,10 +163,22 @@ export default class ChannelNotifications extends React.Component {
}.bind(this);
let curChannel = ChannelStore.get(this.state.channelId);
let extraInfo = (<span>These settings will override the global notification settings</span>);
let extraInfo = (
<span>
These settings will override the global notification settings.
<br/>
Desktop notifications are available on Firefox, Safari, and Chrome.
</span>
);
if (curChannel && curChannel.display_name) {
extraInfo = (<span>These settings will override the global notification settings for the <b>{curChannel.display_name}</b> channel</span>);
extraInfo = (
<span>
These settings will override the global notification settings for the <b>{curChannel.display_name}</b> channel.
<br/>
Desktop notifications are available on Firefox, Safari, and Chrome.
</span>
);
}
return (