feat(external_api): make sure the created iframe has no border

This commit is contained in:
Saúl Ibarra Corretgé 2017-07-06 22:46:35 +02:00 committed by hristoterezov
parent 7b1639569e
commit 3de6f1cd7f
1 changed files with 1 additions and 0 deletions

View File

@ -246,6 +246,7 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
this.frame.width = '100%';
this.frame.height = '100%';
this.frame.setAttribute('allowFullScreen', 'true');
this.frame.style.border = 0;
this.frame = this.iframeHolder.appendChild(this.frame);
}