diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-16 14:20:26 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-09-16 15:35:23 +0100 |
commit | b170fe921e327d8d1be9768d30305ba953ccae9f (patch) | |
tree | 951f63d54ea01912f475396a6fa010f76a5009c5 | |
parent | Time out calls from both ends properly. (diff) | |
download | synapse-b170fe921e327d8d1be9768d30305ba953ccae9f.tar.xz |
Added a section on bing words if you enable desktop notifications.
-rw-r--r-- | webclient/room/room-controller.js | 2 | ||||
-rw-r--r-- | webclient/settings/settings-controller.js | 11 | ||||
-rw-r--r-- | webclient/settings/settings.html | 8 |
3 files changed, 19 insertions, 2 deletions
diff --git a/webclient/room/room-controller.js b/webclient/room/room-controller.js index 2c9a3836e7..4a91d298bc 100644 --- a/webclient/room/room-controller.js +++ b/webclient/room/room-controller.js @@ -139,7 +139,7 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput']) if (isLive && event.room_id === $scope.room_id) { scrollToBottom(); - + if (window.Notification) { // Show notification when the window is hidden, or the user is idle if (document.hidden || matrixService.presence.unavailable === mPresence.getState()) { diff --git a/webclient/settings/settings-controller.js b/webclient/settings/settings-controller.js index 8c877a24e9..9cdace704a 100644 --- a/webclient/settings/settings-controller.js +++ b/webclient/settings/settings-controller.js @@ -194,7 +194,16 @@ angular.module('SettingsController', ['matrixService', 'mFileUpload', 'mFileInpu /*** Desktop notifications section ***/ $scope.settings = { - notifications: undefined + notifications: undefined, + bingWords: matrixService.config().bingWords + }; + + $scope.saveBingWords = function() { + console.log("Saving words: "+JSON.stringify($scope.settings.bingWords)); + var config = matrixService.config(); + config.bingWords = $scope.settings.bingWords; + matrixService.setConfig(config); + matrixService.saveConfig(); }; // If the browser supports it, check the desktop notification state diff --git a/webclient/settings/settings.html b/webclient/settings/settings.html index c358a6e9d8..3b3dd3dadd 100644 --- a/webclient/settings/settings.html +++ b/webclient/settings/settings.html @@ -52,6 +52,14 @@ <div class="section" ng-switch="settings.notifications"> <div ng-switch-when="granted"> Notifications are enabled. + <div class="section"> + <h4>Words to alert on:</h4> + <input size=40 name="bingWords" ng-model="settings.bingWords" ng-list placeholder="Enter words separated with ," + ng-blur="saveBingWords()"/> + <ul> + <li ng-repeat="word in settings.bingWords">{{word}}</li> + </ul> + </div> </div> <div ng-switch-when="denied"> You have denied permission for notifications.<br/> |