Hey!
I have a usecase where I need to insert an iframe within my app. That iframe should be shown as a “normal” page in the app. Currently I’m using
<iframe seamless src="http://www.google.com" style="width: 100%; min-height: 100%;">
But that causes double vertical scrollbars (one for the iframe and one from the app itself).
Is there a better way to do that? Maybe to get the height from the iframe content and make the iframe exactly that height instead of 100%?