diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-11 12:01:44 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-11 12:01:44 +0200 |
commit | cc049851d0cd76ea5cb92ca2c6f7b6a6c45e217e (patch) | |
tree | fe904b2fc0c98abc91ac01c33af7460539006f11 /webclient | |
parent | Room topic: if the request fails, show the error in the feedback (diff) | |
download | synapse-cc049851d0cd76ea5cb92ca2c6f7b6a6c45e217e.tar.xz |
On member avatar mouseover, show user_id and power level
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 587b0057a6..98423ae40b 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -37,7 +37,7 @@ <img class="userAvatarImage" ng-src="{{member.avatar_url || 'img/default-profile.png'}}" alt="{{ member.displayname || member.id.substr(0, member.id.indexOf(':')) }}" - title="{{ member.id }}" + title="{{ member.id }} - power: {{ member.powerLevel }}" width="80" height="80"/> <img class="userAvatarGradient" src="img/gradient.png" title="{{ member.id }}" width="80" height="24"/> <div class="userPowerLevel" ng-style="{'width': member.powerLevelNorm +'%'}"></div> |