mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-05 14:18:55 +01:00
Wipe the selected room ID on the home screen.
This commit is contained in:
parent
5180285456
commit
0a699df5e8
1 changed files with 4 additions and 2 deletions
|
@ -17,8 +17,8 @@ limitations under the License.
|
|||
'use strict';
|
||||
|
||||
angular.module('HomeController', ['matrixService', 'eventHandlerService', 'RecentsController'])
|
||||
.controller('HomeController', ['$scope', '$location', 'matrixService', 'eventHandlerService', 'modelService',
|
||||
function($scope, $location, matrixService, eventHandlerService, modelService) {
|
||||
.controller('HomeController', ['$scope', '$location', 'matrixService', 'eventHandlerService', 'modelService', 'recentsService',
|
||||
function($scope, $location, matrixService, eventHandlerService, modelService, recentsService) {
|
||||
|
||||
$scope.config = matrixService.config();
|
||||
$scope.public_rooms = [];
|
||||
|
@ -46,6 +46,8 @@ angular.module('HomeController', ['matrixService', 'eventHandlerService', 'Recen
|
|||
$scope.newChat = {
|
||||
user: ""
|
||||
};
|
||||
|
||||
recentsService.setSelectedRoomId(undefined);
|
||||
|
||||
var refresh = function() {
|
||||
|
||||
|
|
Loading…
Reference in a new issue