diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-14 03:35:09 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-14 03:35:09 +0100 |
commit | 9391be0f5d2c04c13467de6c7ae81c4d6cc4c0a5 (patch) | |
tree | 8b9d7ad44bd65a8cdb1eb59e59b331c5af9cf92d /webclient | |
parent | fix http client GET parameters; somehow missing named param. how could this h... (diff) | |
download | synapse-9391be0f5d2c04c13467de6c7ae81c4d6cc4c0a5.tar.xz |
fix emote presentation
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/room/room.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/room/room.html b/webclient/room/room.html index 51af54e7b2..8fc7d5d360 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -33,7 +33,7 @@ </td> <td ng-class="!msg.content.membership_target ? (msg.content.msgtype === 'm.emote' ? 'emote text' : 'text') : ''"> <div class="bubble"> - {{ msg.content.msgtype === "m.emote" ? ("* " + (members[msg.user_id].displayname || msg.user_id) + " ") : "" }} + {{ msg.content.msgtype === "m.emote" ? ("* " + (members[msg.user_id].displayname || msg.user_id) + " " + msg.content.body) : "" }} {{ msg.content.msgtype === "m.text" ? msg.content.body : "" }} <img class="image" ng-hide='msg.content.msgtype !== "m.image"' src="{{ msg.content.url }}" alt="{{ msg.content.body }}"/> </div> |