raiseHandState now visible for new participants, deleted raiseHand notification

This commit is contained in:
Stefan Otto
2018-07-26 10:01:35 +02:00
parent 19b1269dc3
commit ee3c183c9c
5 changed files with 72 additions and 15 deletions
@@ -47,6 +47,20 @@ const ListPeer = (props) =>
<div className='peer-info'>
{peer.displayName}
</div>
<div className='indicators'>
{peer.raiseHandState ?
<div className={
classnames(
'icon', 'raise-hand', {
on : peer.raiseHandState,
off : !peer.raiseHandState
}
)
}
/>
:null
}
</div>
<div className='controls'>
{ screenConsumer ?
<div