diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-19 08:58:53 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-19 08:58:53 +0200 |
commit | c3f1548bb4b485aef00ac67079cea7e65216d4d4 (patch) | |
tree | f4c0c3806a25e5624f6cb3e1e45f72d8a12c6225 /webclient/room/room-controller.js | |
parent | Created boilerplate for user profile page (diff) | |
download | synapse-c3f1548bb4b485aef00ac67079cea7e65216d4d4.tar.xz |
Added link to user profile pages
Diffstat (limited to 'webclient/room/room-controller.js')
-rw-r--r-- | webclient/room/room-controller.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/webclient/room/room-controller.js b/webclient/room/room-controller.js index d130a28fd7..bb9167d9df 100644 --- a/webclient/room/room-controller.js +++ b/webclient/room/room-controller.js @@ -433,6 +433,11 @@ angular.module('RoomController', ['ngSanitize']) }); }; + // Open the user profile page + $scope.goToUserPage = function(user_id) { + $location.path("user/" + user_id); + }; + $scope.leaveRoom = function() { matrixService.leave($scope.room_id).then( |