mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-10-02 00:48:27 -04:00
SYWEB-57: Highlight rooms which have had their bingers go off in blue.
Priority is the same as xchat so selected > blue > red.
This commit is contained in:
parent
99c445a6d6
commit
960b28c90a
5 changed files with 50 additions and 7 deletions
|
@ -3,7 +3,7 @@
|
|||
<tbody ng-repeat="(index, room) in rooms | orderRecents"
|
||||
ng-click="selectRoom(room)"
|
||||
class="recentsRoom"
|
||||
ng-class="{'recentsRoomSelected': (room.room_id === recentsSelectedRoomID), 'recentsRoomUnread': (unreadMessages[room.room_id])}">
|
||||
ng-class="{'recentsRoomSelected': (room.room_id === recentsSelectedRoomID), 'recentsRoomBing': (unreadBings[room.room_id]), 'recentsRoomUnread': (unreadMessages[room.room_id])}">
|
||||
<tr>
|
||||
<td ng-class="room.current_room_state.state('m.room.join_rules').content.join_rule == 'public' ? 'recentsRoomName recentsPublicRoom' : 'recentsRoomName'">
|
||||
{{ room.room_id | mRoomName }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue