mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-09-21 11:44:36 -04:00
Display the room topic in the room, underneath the name of the room.
This commit is contained in:
parent
544691ab05
commit
324020d5fe
3 changed files with 33 additions and 8 deletions
|
@ -2,8 +2,13 @@
|
|||
|
||||
<div id="roomHeader">
|
||||
<a href ng-click="goToPage('/')"><img src="img/logo-small.png" width="100" height="43" alt="[matrix]"/></a>
|
||||
<div id="roomName">
|
||||
{{ room_id | mRoomName }}
|
||||
<div class="roomHeaderInfo">
|
||||
<div id="roomName">
|
||||
{{ room_id | mRoomName }}
|
||||
</div>
|
||||
<div id="roomTopic" ng-show="events.rooms[room_id]['m.room.topic'].content.topic">
|
||||
{{ events.rooms[room_id]['m.room.topic'].content.topic }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue