fix(external-api) fix sending forms after introduction of sandbox

Ref: https://github.com/jitsi/jitsi-meet-electron/issues/837
This commit is contained in:
Saúl Ibarra Corretgé 2023-01-26 10:40:36 +01:00 committed by Saúl Ibarra Corretgé
parent fd7b6f457e
commit 5dce74e21d
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ 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'; this._frame.sandbox = 'allow-scripts allow-same-origin allow-popups allow-forms';
this._frame.setAttribute('allowFullScreen', 'true'); this._frame.setAttribute('allowFullScreen', 'true');
this._frame.style.border = 0; this._frame.style.border = 0;