fix(Thumbnails): removes unused css classes
This commit is contained in:
parent
4d335e086b
commit
c41c219206
|
@ -168,7 +168,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="filmstrip">
|
<div class="filmstrip">
|
||||||
<div class="filmstrip__videos" id="remoteVideos">
|
<div class="filmstrip__videos" id="remoteVideos">
|
||||||
<span id="localVideoContainer" class="videocontainer videocontainer_small">
|
<span id="localVideoContainer" class="videocontainer">
|
||||||
<div class="videocontainer__background"></div>
|
<div class="videocontainer__background"></div>
|
||||||
<span id="localVideoWrapper">
|
<span id="localVideoWrapper">
|
||||||
<!--<video id="localVideo" autoplay muted></video> - is now per stream generated -->
|
<!--<video id="localVideo" autoplay muted></video> - is now per stream generated -->
|
||||||
|
|
|
@ -629,7 +629,7 @@ RemoteVideo.prototype.removeRemoteVideoMenu = function() {
|
||||||
RemoteVideo.createContainer = function (spanId) {
|
RemoteVideo.createContainer = function (spanId) {
|
||||||
let container = document.createElement('span');
|
let container = document.createElement('span');
|
||||||
container.id = spanId;
|
container.id = spanId;
|
||||||
container.className = 'videocontainer videocontainer_remote';
|
container.className = 'videocontainer';
|
||||||
|
|
||||||
let wrapper = document.createElement('div');
|
let wrapper = document.createElement('div');
|
||||||
wrapper.className = 'videocontainer__background';
|
wrapper.className = 'videocontainer__background';
|
||||||
|
|
Loading…
Reference in New Issue