added parameter to iframe allowing linking to the Jitsi mobile app with user interaction
This commit is contained in:
parent
077a88a803
commit
827a5e137f
|
@ -393,7 +393,8 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
|
||||||
this._frame.name = frameName;
|
this._frame.name = frameName;
|
||||||
this._frame.id = frameName;
|
this._frame.id = frameName;
|
||||||
this._setSize(height, width);
|
this._setSize(height, width);
|
||||||
this._frame.sandbox = 'allow-scripts allow-same-origin allow-popups allow-forms allow-downloads';
|
this._frame.sandbox = 'allow-scripts allow-same-origin allow-popups allow-forms allow-downloads\
|
||||||
|
allow-top-navigation-by-user-activation';
|
||||||
this._frame.setAttribute('allowFullScreen', 'true');
|
this._frame.setAttribute('allowFullScreen', 'true');
|
||||||
this._frame.style.border = 0;
|
this._frame.style.border = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue