Renames videocontainer overlay to hoverOverlay.

pull/1071/head
damencho 9 years ago
parent 328ff54423
commit e3edef2999
  1. 2
      css/_videolayout_default.scss
  2. 2
      index.html
  3. 2
      modules/UI/videolayout/RemoteVideo.js
  4. 2
      modules/UI/videolayout/SmallVideo.js

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

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

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

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

Loading…
Cancel
Save