I'm trying to show a pdf in my ionic app. I try to embed it in an iframe and in an object tag, but I'm never able to scroll it in my ios simulator. The tips which work in safari, don't do anything in that case.
So what is a good way to embed a pdf in a cordova application for ios?
Here is my pdf code:
<div class="col document">
<div class="scroll-wrapper">
<iframe src="{{currentDocument.document_url}}" scrolling="no"></iframe>
</div>
</div>
And my last CSS:
#iframe-wrapper{height: 100%; min-height: 100%;}
.scroll{height: 100%;}
.scroll-wrapper{
width: 100%;
height: 500px;
-webkit-overflow-scrolling: touch;
overflow: scroll;
}
.scroll-wrapper iframe{
width: 100%;
height: 500px;
}