Merge pull request #855 from duncanbarnes/master

iFrame styling in CSS not JS
This commit is contained in:
Steve Seguin 2021-05-05 07:24:53 -04:00 committed by GitHub
commit 2de7c38d7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -2467,6 +2467,14 @@ span#guestTips {
display: block;
margin: auto;
}
#iframe_source{
width: 100%;
height: 100%;
margin: auto;
border: 10px dashed rgb(64 65 62)
}
#shareScreenGear{
display:none;
}

View File

@ -6686,10 +6686,6 @@ session.publishIFrame = function(iframeURL){
iframe.allow="autoplay;camera;microphone";
iframe.allowtransparency="true";
iframe.allowfullscreen ="true";
iframe.style.width="100%";
iframe.style.height="100%";
iframe.style.margin="auto";
iframe.style.border = "10px dashed rgb(64 65 62)";
iframe.src = session.iframeSrc;
iframe.id = "iframe_source"
session.iframeEle = iframe;