mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Improved video appearance
This commit is contained in:
parent
45a4f552e8
commit
154f1b98ef
@ -7,7 +7,6 @@
|
|||||||
.call-window {
|
.call-window {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 300px;
|
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 100px;
|
top: 100px;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
@ -46,7 +45,7 @@
|
|||||||
/**
|
/**
|
||||||
* Loading message
|
* Loading message
|
||||||
*/
|
*/
|
||||||
.loading-message-container {
|
.loading-message-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
min-height: 110px;
|
min-height: 110px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -57,4 +56,18 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
color: white;
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stream target
|
||||||
|
*/
|
||||||
|
.call-window .streams-target {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.call-window .streams-target video {
|
||||||
|
width: 149px;
|
||||||
}
|
}
|
@ -151,7 +151,7 @@ ComunicWeb.components.calls.callWindow = {
|
|||||||
* Create loading message area
|
* Create loading message area
|
||||||
*/
|
*/
|
||||||
call.window.loadingMessageContainer = createElem2({
|
call.window.loadingMessageContainer = createElem2({
|
||||||
appendTo: call.window.body,
|
insertBefore: call.window.body.firstChild,
|
||||||
type: "div",
|
type: "div",
|
||||||
class: "loading-message-container",
|
class: "loading-message-container",
|
||||||
innerHTML: "<i class='fa fa-clock-o'></i>"
|
innerHTML: "<i class='fa fa-clock-o'></i>"
|
||||||
@ -196,14 +196,17 @@ ComunicWeb.components.calls.callWindow = {
|
|||||||
if(!call.open)
|
if(!call.open)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
//Mark as connecting
|
|
||||||
call.setLoadingMessage("Connecting...");
|
|
||||||
|
|
||||||
call.localStream = stream;
|
call.localStream = stream;
|
||||||
|
|
||||||
//Initialize signaling server connection
|
//Initialize signaling server connection
|
||||||
ComunicWeb.components.calls.callWindow.initializeConnectionToSignalingServer(call);
|
ComunicWeb.components.calls.callWindow.initializeConnectionToSignalingServer(call);
|
||||||
|
|
||||||
|
//Add local stream to the list of visible stream
|
||||||
|
ComunicWeb.components.calls.callWindow.addVideoStream(call, true, stream);
|
||||||
|
|
||||||
|
//Mark as connecting
|
||||||
|
call.setLoadingMessage("Connecting...");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}).catch(function(e){
|
}).catch(function(e){
|
||||||
|
Loading…
Reference in New Issue
Block a user