html2canvas scrolled content

Hello,
I’m trying to print scrolled (horizontally) content by using html2canvas. Although I’ve modified html2canvas.js to use original heigh and width instead of using window size I’m not able to show the scrolled content.

My app looks like:
`



<ion-content class="has-header" overflow-scroll="false">
    <div id="**tobeprinted**" style="display: inline-block">
       <div class="inline padding" ng-repeat="word in text.myText">
               ........
       </div>
    </div>
</ion-content>
`

I think that ion-view or ion-content loads it’s content dinamically so when i take the picture the scrolled content is not loaded and html2canvas cannot capture it. Am I right? Is there any way to force ionic to load all the content?