Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/control/content/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
</div>
<div class="note" ng-if="data.content.view === viewType.NATIVE_IN_APP && data.content.viewSubtype === viewSubtype.NATIVE_WEBVIEW">
Native Webview is a new feature that works around iFrame issues. If the iFrame option isn’t working, try using Native Webview instead.
<div class="bold margin-top-twenty">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.</div>
<div class="bold margin-top-twenty">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.</div>
</div>
<div class="radio radio-primary radio-block">
<input id="external" type="radio" ng-model="data.content.view"
Expand Down
1 change: 1 addition & 0 deletions src/widget/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -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%';
Expand Down