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.
{ 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%';