Browse Source

Renames videocontainer overlay to hoverOverlay.

master
damencho 8 years ago
parent
commit
e3edef2999

+ 1
- 1
css/_videolayout_default.scss View File

81
     height: $thumbnailIndicatorSize + $toolbarPadding;
81
     height: $thumbnailIndicatorSize + $toolbarPadding;
82
 }
82
 }
83
 
83
 
84
-.videocontainer__overlay {
84
+.videocontainer__hoverOverlay {
85
     position: relative;
85
     position: relative;
86
     width: 100%;
86
     width: 100%;
87
     height: 100%;
87
     height: 100%;

+ 1
- 1
index.html View File

255
                     <audio id="localAudio" autoplay muted></audio>
255
                     <audio id="localAudio" autoplay muted></audio>
256
                     <div class="videocontainer__toolbar"></div>
256
                     <div class="videocontainer__toolbar"></div>
257
                     <div class="videocontainer__toptoolbar"></div>
257
                     <div class="videocontainer__toptoolbar"></div>
258
-                    <div class="videocontainer__overlay"></div>
258
+                    <div class="videocontainer__hoverOverlay"></div>
259
                 </span>
259
                 </span>
260
                 <audio id="userJoined" src="sounds/joined.wav" preload="auto"></audio>
260
                 <audio id="userJoined" src="sounds/joined.wav" preload="auto"></audio>
261
                 <audio id="userLeft" src="sounds/left.wav" preload="auto"></audio>
261
                 <audio id="userLeft" src="sounds/left.wav" preload="auto"></audio>

+ 1
- 1
modules/UI/videolayout/RemoteVideo.js View File

577
     container.appendChild(toolbar);
577
     container.appendChild(toolbar);
578
 
578
 
579
     let overlay = document.createElement('div');
579
     let overlay = document.createElement('div');
580
-    overlay.className = "videocontainer__overlay";
580
+    overlay.className = "videocontainer__hoverOverlay";
581
     container.appendChild(overlay);
581
     container.appendChild(overlay);
582
 
582
 
583
     var remotes = document.getElementById('remoteVideos');
583
     var remotes = document.getElementById('remoteVideos');

+ 1
- 1
modules/UI/videolayout/SmallVideo.js View File

512
     // show hide overlay when there is a video or avatar under
512
     // show hide overlay when there is a video or avatar under
513
     // the display name
513
     // the display name
514
     UIUtil.setVisibility(   $('#' + this.videoSpanId
514
     UIUtil.setVisibility(   $('#' + this.videoSpanId
515
-                                + ' .videocontainer__overlay'),
515
+                                + ' .videocontainer__hoverOverlay'),
516
                             (displayMode === DISPLAY_AVATAR_WITH_NAME
516
                             (displayMode === DISPLAY_AVATAR_WITH_NAME
517
                                 || displayMode === DISPLAY_VIDEO_WITH_NAME));
517
                                 || displayMode === DISPLAY_VIDEO_WITH_NAME));
518
 };
518
 };

Loading…
Cancel
Save