diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-17 03:48:28 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-17 03:48:28 +0100 |
commit | 60245c4f90f60dc7af79165cf074a4df57a02558 (patch) | |
tree | 0ceb74ee15def532e833d7f87c2052e13af7713b /webclient/app-controller.js | |
parent | unbreak login sequence (which spuriously required a sydent server to be speci... (diff) | |
download | synapse-60245c4f90f60dc7af79165cf074a4df57a02558.tar.xz |
implement html5 notifications. (have to be explicitly requested under Config)
Diffstat (limited to 'webclient/app-controller.js')
-rw-r--r-- | webclient/app-controller.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/webclient/app-controller.js b/webclient/app-controller.js index 7fa87e30c1..ff4cb6e69e 100644 --- a/webclient/app-controller.js +++ b/webclient/app-controller.js @@ -45,6 +45,12 @@ angular.module('MatrixWebClientController', ['matrixService']) $scope.config = matrixService.config(); } }; + + $scope.closeConfig = function() { + if ($scope.config) { + $scope.config = undefined; + } + }; if (matrixService.config()) { eventStreamService.resume(); @@ -69,6 +75,15 @@ angular.module('MatrixWebClientController', ['matrixService']) console.log("Invalid access token -> log user out"); $scope.logout(); }); + + $scope.requestNotifications = function() { + if (window.Notification) { + console.log("Notification.permission: " + window.Notification.permission); + window.Notification.requestPermission(function(){}); + } + }; + + }]); |