Using ion-slide-box in a scrollable ion-content view

I have an ionic view with the following markup:

<ion-content scroll="true">
    <ion-list>
        ... some ion items...
        <ion-item> 
            <ion-slide-box>
                <ion-slide ng-repeat="image in images">
                    <div class="background"></div>
                        <img src="{{ image.src }}">
                    </div>
                </ion-slide>
            </ion-slide-box>
        </ion-item>
    </ion-list>
<ion-content scroll="true">

Everything works fine except that when I use the ion-slide-box and slide the images in it horizontally then the vertical scrolling of the surrounding view is too sensitive and scrolls in between.

Did anyone have the same problem or knows if there is an easy way to disable scrolling as long as the slide box is sliding?

The solution was to upgrade the ionic javascript to the latest release candidate (currently rc5).