Can switch to full screen

This commit is contained in:
2019-01-26 10:57:58 +01:00
parent 0b806d5bb2
commit 194b6c60de
3 changed files with 72 additions and 2 deletions

View File

@ -303,6 +303,19 @@ ComunicWeb.components.calls.callWindow = {
togglButtonSelectedStatus(btn, call.isLocalVideoEnabled());
console.log(call);
}
},
//Full screen button
{
icon: "fa-expand",
selected: false,
onclick: function(btn){
RequestFullScreen(callContainer);
setTimeout(function(){
togglButtonSelectedStatus(btn, IsFullScreen());
}, 1000);
}
}
];