From f5b3df070815d7fe448de43c3f3b8bde3059de0c Mon Sep 17 00:00:00 2001 From: Abdalla Dimes Date: Wed, 13 Aug 2025 22:04:14 +0300 Subject: [PATCH 1/2] feat: Add allow list to iframe --- src/widget/widget.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widget/widget.js b/src/widget/widget.js index 57340f3..13f1b76 100644 --- a/src/widget/widget.js +++ b/src/widget/widget.js @@ -151,6 +151,7 @@ const renderiFrame = (props) =>{ let iFrame = window.document.createElement('iframe'); iFrame.id = 'webviewIframe'; + iFrame.allow = "autoplay; camera; microphone; geolocation; fullscreen; picture-in-picture"; iFrame.src = props.url; iFrame.scrolling = props.isIOS ? 'yes' : 'auto'; iFrame.style.height = '100%'; From 806cf02b26bcf44ec9a72471eefe8db87cd689f2 Mon Sep 17 00:00:00 2001 From: Abdalla Dimes Date: Thu, 14 Aug 2025 00:26:12 +0300 Subject: [PATCH 2/2] hotfix --- src/control/content/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control/content/index.html b/src/control/content/index.html index 4bf7081..715c5c8 100644 --- a/src/control/content/index.html +++ b/src/control/content/index.html @@ -126,7 +126,7 @@
Native Webview is a new feature that works around iFrame issues. If the iFrame option isn’t working, try using Native Webview instead. -
Note: This feature will only work for apps with builds submitted to Apple App Store and Google Play Store after the 5, August 2025. For older builds the app will default to "In Popup Window" option.
+
Note: This feature will only work for apps with builds submitted to Apple App Store and Google Play Store after 5, August 2025. For older builds the app will default to "In Popup Window" option.