diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-27 16:58:44 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-08-27 17:20:53 +0200 |
commit | 7ee5288849dc687515f8ad499e7c95c73f842394 (patch) | |
tree | 9581f2199cedb7e286434018639e5bc82862692a /webclient/room/room.html | |
parent | Added generic state/non-state event sending to the API docs. (diff) | |
download | synapse-7ee5288849dc687515f8ad499e7c95c73f842394.tar.xz |
Added the recents component at the left hand side of the room page
Diffstat (limited to '')
-rw-r--r-- | webclient/room/room.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/webclient/room/room.html b/webclient/room/room.html index c167819f15..236ca0a89b 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -7,7 +7,11 @@ <div id="roomName"> {{ room_alias || room_id }} </div> - + + <div id="roomRecentsTableWrapper"> + <div ng-include="'recents/recents.html'"></div> + </div> + <div id="usersTableWrapper"> <table id="usersTable"> <tr ng-repeat="member in members | orderMembersList"> |