Fixes undefined error and shared video.
This commit is contained in:
parent
2807346bdf
commit
328ff54423
|
@ -625,7 +625,7 @@ function SharedVideoThumb (url)
|
|||
this.videoSpanId = "sharedVideoContainer";
|
||||
this.container = this.createContainer(this.videoSpanId);
|
||||
this.container.onclick = this.videoClick.bind(this);
|
||||
|
||||
this.bindHoverHandler();
|
||||
SmallVideo.call(this, VideoLayout);
|
||||
this.isVideoMuted = true;
|
||||
}
|
||||
|
|
|
@ -471,7 +471,8 @@ SmallVideo.prototype.selectDisplayMode = function() {
|
|||
*/
|
||||
SmallVideo.prototype._isHovered = function () {
|
||||
return this.videoIsHovered
|
||||
|| this.connectionIndicator.popover.popoverIsHovered;
|
||||
|| (this.connectionIndicator
|
||||
&& this.connectionIndicator.popover.popoverIsHovered);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue