mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 10:11:03 +01:00 
			
		
		
		
	Merge pull request #1123 from vector-im/rav/mute_desktop_notifs
Add setting for audio notifications
This commit is contained in:
		
						commit
						33b7e2046d
					
				@ -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">
 | 
			
		||||
 | 
			
		||||
@ -29,7 +29,7 @@ limitations under the License.
 | 
			
		||||
.mx_UserNotifSettings_labelCell
 | 
			
		||||
{
 | 
			
		||||
    padding-bottom: 21px;
 | 
			
		||||
    width: 270px;
 | 
			
		||||
    width: 400px;
 | 
			
		||||
    display: table-cell;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user