Fix controls for down streams.
Now that down streams have labels, we need to distinguish on the stream direction.
This commit is contained in:
+2
-2
@@ -1447,7 +1447,7 @@ function addCustomControls(media, container, c, toponly) {
|
|||||||
|
|
||||||
let volume = getVideoButton(controls, 'volume');
|
let volume = getVideoButton(controls, 'volume');
|
||||||
|
|
||||||
if(c.label === 'camera') {
|
if(c.up && c.label === 'camera') {
|
||||||
volume.remove();
|
volume.remove();
|
||||||
} else {
|
} else {
|
||||||
setVolumeButton(media.muted,
|
setVolumeButton(media.muted,
|
||||||
@@ -1457,7 +1457,7 @@ function addCustomControls(media, container, c, toponly) {
|
|||||||
container.appendChild(controls);
|
container.appendChild(controls);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!document.getElementById('topcontrols-' + c.localId)) {
|
if(c.up && !document.getElementById('topcontrols-' + c.localId)) {
|
||||||
let toptemplate =
|
let toptemplate =
|
||||||
document.getElementById('topvideocontrols-template').firstElementChild;
|
document.getElementById('topvideocontrols-template').firstElementChild;
|
||||||
let topcontrols = cloneHTMLElement(toptemplate);
|
let topcontrols = cloneHTMLElement(toptemplate);
|
||||||
|
|||||||
Reference in New Issue
Block a user