diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-27 17:05:48 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-27 17:05:48 +0100 |
commit | 7c89d5e97ad5f7e8c67622243cc97392c4ab743d (patch) | |
tree | 7769fc5fa3e13b6bf1af556ba02e50d94bb51d46 /webclient/recents/recents.html | |
parent | Comments! (diff) | |
parent | improve iOS layout a bit (diff) | |
download | synapse-7c89d5e97ad5f7e8c67622243cc97392c4ab743d.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into develop
Diffstat (limited to 'webclient/recents/recents.html')
-rw-r--r-- | webclient/recents/recents.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webclient/recents/recents.html b/webclient/recents/recents.html index 6d2864ac97..6fda6c5c6b 100644 --- a/webclient/recents/recents.html +++ b/webclient/recents/recents.html @@ -1,6 +1,9 @@ <div ng-controller="RecentsController" data-ng-init="onInit()"> <table class="recentsTable"> - <tbody ng-repeat="(rm_id, room) in rooms | orderRecents" ng-click="goToPage('room/' + (room.room_alias ? room.room_alias : room.room_id) )" class ="recentsRoom" > + <tbody ng-repeat="(rm_id, room) in rooms | orderRecents" + ng-click="goToPage('room/' + (room.room_alias ? room.room_alias : room.room_id) )" + class ="recentsRoom" + ng-class="{'recentsRoomSelected': (room.room_id === recentsSelectedRoomID)}"> <tr> <td class="recentsRoomName"> {{ room.room_display_name }} |