feat(filmstrip): participant on stage displays with transparent video, not hidden
This commit is contained in:
parent
ca4c7129f1
commit
7de8b96a07
|
@ -682,7 +682,8 @@
|
|||
}
|
||||
|
||||
video {
|
||||
visibility: hidden;
|
||||
opacity: 0.2;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -548,7 +548,8 @@ SmallVideo.prototype.isVideoPlayable = function() {
|
|||
SmallVideo.prototype.selectDisplayMode = function() {
|
||||
// Display name is always and only displayed when user is on the stage
|
||||
if (this.isCurrentlyOnLargeVideo()) {
|
||||
return DISPLAY_BLACKNESS_WITH_NAME;
|
||||
return this.isVideoPlayable()
|
||||
? DISPLAY_BLACKNESS_WITH_NAME : DISPLAY_AVATAR_WITH_NAME;
|
||||
} else if (this.isVideoPlayable()
|
||||
&& this.selectVideoElement().length
|
||||
&& !APP.conference.isAudioOnly()) {
|
||||
|
|
Loading…
Reference in New Issue