From 827a5e137f1db1e04087892a1c637d5af3097820 Mon Sep 17 00:00:00 2001 From: Tipuch Date: Tue, 7 Mar 2023 16:14:44 +0700 Subject: [PATCH] added parameter to iframe allowing linking to the Jitsi mobile app with user interaction --- modules/API/external/external_api.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/API/external/external_api.js b/modules/API/external/external_api.js index 3ac76c7a3..28fbe8fc1 100644 --- a/modules/API/external/external_api.js +++ b/modules/API/external/external_api.js @@ -393,7 +393,8 @@ export default class JitsiMeetExternalAPI extends EventEmitter { this._frame.name = frameName; this._frame.id = frameName; 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.style.border = 0;