feat(external_api): make sure the created iframe has no border
This commit is contained in:
parent
7b1639569e
commit
3de6f1cd7f
|
@ -246,6 +246,7 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
|
||||||
this.frame.width = '100%';
|
this.frame.width = '100%';
|
||||||
this.frame.height = '100%';
|
this.frame.height = '100%';
|
||||||
this.frame.setAttribute('allowFullScreen', 'true');
|
this.frame.setAttribute('allowFullScreen', 'true');
|
||||||
|
this.frame.style.border = 0;
|
||||||
this.frame = this.iframeHolder.appendChild(this.frame);
|
this.frame = this.iframeHolder.appendChild(this.frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue