diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 17:43:25 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 17:43:35 +0200 |
commit | 3ed39ad20e20556ce8f103d2187a5699ceac95f9 (patch) | |
tree | ec22792c12d9395046abc90da57e73dd9165e918 /webclient/recents/recents-controller.js | |
parent | Retry sending events that fail to send. (diff) | |
download | synapse-3ed39ad20e20556ce8f103d2187a5699ceac95f9.tar.xz |
Clean data when user logs out
Diffstat (limited to '')
-rw-r--r-- | webclient/recents/recents-controller.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/webclient/recents/recents-controller.js b/webclient/recents/recents-controller.js index b65f97439f..a0db0538f3 100644 --- a/webclient/recents/recents-controller.js +++ b/webclient/recents/recents-controller.js @@ -102,7 +102,7 @@ angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHand } return memberCount; - } + }; $scope.onInit = function() { // Init recents list only once @@ -139,6 +139,11 @@ angular.module('RecentsController', ['matrixService', 'matrixFilter', 'eventHand } ); }; - + + // Clean data when user logs out + $scope.$on(eventHandlerService.RESET_EVENT, function() { + + delete $rootScope.rooms; + }); }]); |