Procházet zdrojové kódy

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

master
Saúl Ibarra Corretgé před 8 roky
rodič
revize
3de6f1cd7f
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1
    0
      modules/API/external/external_api.js

+ 1
- 0
modules/API/external/external_api.js Zobrazit soubor

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

Načítá se…
Zrušit
Uložit