Renames videocontainer overlay to hoverOverlay.

This commit is contained in:
damencho 2016-10-27 14:32:22 -05:00
parent 328ff54423
commit e3edef2999
4 changed files with 4 additions and 4 deletions

View File

@ -81,7 +81,7 @@
height: $thumbnailIndicatorSize + $toolbarPadding; height: $thumbnailIndicatorSize + $toolbarPadding;
} }
.videocontainer__overlay { .videocontainer__hoverOverlay {
position: relative; position: relative;
width: 100%; width: 100%;
height: 100%; height: 100%;

View File

@ -255,7 +255,7 @@
<audio id="localAudio" autoplay muted></audio> <audio id="localAudio" autoplay muted></audio>
<div class="videocontainer__toolbar"></div> <div class="videocontainer__toolbar"></div>
<div class="videocontainer__toptoolbar"></div> <div class="videocontainer__toptoolbar"></div>
<div class="videocontainer__overlay"></div> <div class="videocontainer__hoverOverlay"></div>
</span> </span>
<audio id="userJoined" src="sounds/joined.wav" preload="auto"></audio> <audio id="userJoined" src="sounds/joined.wav" preload="auto"></audio>
<audio id="userLeft" src="sounds/left.wav" preload="auto"></audio> <audio id="userLeft" src="sounds/left.wav" preload="auto"></audio>

View File

@ -577,7 +577,7 @@ RemoteVideo.createContainer = function (spanId) {
container.appendChild(toolbar); container.appendChild(toolbar);
let overlay = document.createElement('div'); let overlay = document.createElement('div');
overlay.className = "videocontainer__overlay"; overlay.className = "videocontainer__hoverOverlay";
container.appendChild(overlay); container.appendChild(overlay);
var remotes = document.getElementById('remoteVideos'); var remotes = document.getElementById('remoteVideos');

View File

@ -512,7 +512,7 @@ SmallVideo.prototype.updateView = function () {
// show hide overlay when there is a video or avatar under // show hide overlay when there is a video or avatar under
// the display name // the display name
UIUtil.setVisibility( $('#' + this.videoSpanId UIUtil.setVisibility( $('#' + this.videoSpanId
+ ' .videocontainer__overlay'), + ' .videocontainer__hoverOverlay'),
(displayMode === DISPLAY_AVATAR_WITH_NAME (displayMode === DISPLAY_AVATAR_WITH_NAME
|| displayMode === DISPLAY_VIDEO_WITH_NAME)); || displayMode === DISPLAY_VIDEO_WITH_NAME));
}; };