Hi,
I am having an issue to scroll iframes in a tabbed application. If the iframe is in a view by itself (non-tabbed), no issue. But if the content is within tabs, the scrolling doesn’t work. On Android there is no issue. Only for iOS. Here are some code samples:
CSS:
.iframe-wrapper iframe {
width: 100%;
height: 100%;
}
Inside the view:
<ion-view view-title="{{iframe_title}}">
<ion-content class="padding iframe-wrapper" scroll="true" overflow-scroll="true">
<iframe src="{{iframe_url}}" data-tap-disabled="true"></iframe>
</ion-content>
</ion-view>
Am I missing something?