Skip to content

Commit

Permalink
[FIX] Chrome 64 breaks jitsi-meet iframe
Browse files Browse the repository at this point in the history
Adds the allow microphone and camera tag in the iframe for jitsi
  • Loading branch information
speedy01 authored Jan 31, 2018
1 parent 8594050 commit ab54a3d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ function JitsiMeetExternalAPI(domain, room_name, width, height, parentNode, conf
this.frame.width = "100%";
this.frame.height = "100%";
this.frame.setAttribute("allowFullScreen", "true");
this.frame.setAttribute("allow", "microphone; camera");
this.frame = this.iframeHolder.appendChild(this.frame);
this.postis = Postis({
window: this.frame.contentWindow,
Expand Down

0 comments on commit ab54a3d

Please sign in to comment.