Add setting for audio notifications

Expose the enableAudioNotifications setting in the user settings panel.
pull/1123/head
Richard van der Hoff 2016-03-10 11:01:29 +00:00
parent a4d22ffe8c
commit e777db3fc4
2 changed files with 19 additions and 1 deletions

View File

@ -1085,6 +1085,24 @@ module.exports = React.createClass({
</div>
</div>
<div className="mx_UserNotifSettings_tableRow">
<div className="mx_UserNotifSettings_inputCell">
<input id="enableDesktopAudioNotifications"
ref="enableDesktopAudioNotifications"
type="checkbox"
checked={ UserSettingsStore.getEnableAudioNotifications() }
onChange={ (e) => {
UserSettingsStore.setEnableAudioNotifications(e.target.checked);
this.forceUpdate();
}} />
</div>
<div className="mx_UserNotifSettings_labelCell">
<label htmlFor="enableDesktopAudioNotifications">
Enable audible notifications in web client
</label>
</div>
</div>
<h3>General use</h3>
<div className="mx_UserNotifSettings_pushRulesTableWrapper">

View File

@ -29,7 +29,7 @@ limitations under the License.
.mx_UserNotifSettings_labelCell
{
padding-bottom: 21px;
width: 270px;
width: 400px;
display: table-cell;
}