Added tooltips for icons in the users list.
This commit is contained in:
parent
ce31260a7c
commit
bdeb664875
@ -1,27 +1,26 @@
|
||||
<template name="displayUserIcons">
|
||||
<td>{{#if isUserSharingVideo user}}
|
||||
<span class="userListSettingIcon glyphicon glyphicon-facetime-video"></span>
|
||||
<span class="userListSettingIcon glyphicon glyphicon-facetime-video" rel="tooltip" data-placement="bottom" title="{{user.name}} is sharing their webcam"></span>
|
||||
{{/if}}</td>
|
||||
|
||||
<!-- Should use much more noticeable icons than just bootstrap's volume-up & volume-down to differentiate talking but it is good for now -->
|
||||
<td>{{#if isUserSharingAudio user}}
|
||||
{{#if isUserMuted user}}
|
||||
<span class="userListSettingIcon glyphicon glyphicon-volume-off"></span>
|
||||
<span class="userListSettingIcon glyphicon glyphicon-volume-off" rel="tooltip" data-placement="bottom" title="{{user.name}} is muted"></span>
|
||||
{{else}}
|
||||
{{#if isUserTalking user}}
|
||||
<span class="userListSettingIcon glyphicon glyphicon-volume-up"></span>
|
||||
<span class="userListSettingIcon glyphicon glyphicon-volume-up" rel="tooltip" data-placement="bottom" title="{{user.name}} is talking"></span>
|
||||
{{else}}
|
||||
<span class="userListSettingIcon glyphicon glyphicon-volume-down"></span>
|
||||
<span class="userListSettingIcon glyphicon glyphicon-volume-down" rel="tooltip" data-placement="bottom" title="{{user.name}} is not talking"></span>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}</td>
|
||||
|
||||
<td>{{#if user.presenter}}<span class="userListSettingIcon glyphicon glyphicon-picture"></span>{{/if}}</td>
|
||||
<td>{{#if user.presenter}}<span class="userListSettingIcon glyphicon glyphicon-picture" rel="tooltip" data-placement="bottom" title="{{user.name}} is the presenter"></span>{{/if}}</td>
|
||||
|
||||
<td>{{#if user.raise_hand}}<span class="userListSettingIcon glyphicon glyphicon-hand-up"></span>{{/if}}</td>
|
||||
<td>{{#if user.raise_hand}}<span class="userListSettingIcon glyphicon glyphicon-hand-up" rel="tooltip" data-placement="bottom" title="{{user.name}} has raised their hand"></span>{{/if}}</td>
|
||||
</template>
|
||||
|
||||
<template name="usernameEntry"> <!-- A template now because more information be added/styled -->
|
||||
<template name="usernameEntry">
|
||||
<td class="userNameContainer">
|
||||
{{#if isCurrentUser userId}}
|
||||
<p class="userNameEntry" rel="tooltip" data-placement="bottom" title="{{user.name}} (you)">
|
||||
|
Loading…
Reference in New Issue
Block a user