Content with scroll inside slide

Hi. I’ve the following code but if i put a ion-scroll inside the ion-slide with height=100% the scroll don’t work well. If I put a ion-content the slide-box start’s to work in a strange way with slides above slides.
So, I need a slider and content inside each slide.
Any suggestion?

    <ion-slide-box show-pager="false">
    <ion-slide>
        <!-- Content with scroll in the slide -->
    </ion-slide>
    <ion-slide>
        <!-- Content with scroll in the slide -->
    </ion-slide>
    <ion-slide>
        <!-- Content with scroll in the slide -->
    </ion-slide>
</ion-slide-box>

condePen: http://codepen.io/pauloallex24/pen/FprHG

Well. I’ve solved my problem with this:

$(window).load(function() {
$('.scroll-inner-slide').css('height', $(window).height() + 'px');
});

$( window ).resize(function() {
    $('.scroll-inner-slide').css('height', $(window).height() + 'px');
});

And the class .scroll-inner-slide on the ion-scroll. Apparently it can’t handle well the scroll if the ion-scroll element is bigget than the window.
I don’t know why, I just know that I’ve solved it and I’m happy xD