Ionic 1 vertical scroll page not working with ion-scroll

Hello All,

I am a problem with the page scrolling when another scroll in in place.

       <ion-content>
         <ion-list>
          <ion-item ng-repeat="m in m_array">
           <ion-scroll direction="x" scrollbar-y="false">
            <span ng-repeat="n in m.data">...</span>
           </ion-scroll>
          </ion-item>
         </ion-list>
       <ion-content>

Now the horizontal scroll works fine and I can scroll elements using ion-scroll, the problem is that is not possible to scroll the page, because it seems that the horizontal scroll takes the control over the page and the only way to scroll the page is to touch or click outside the ion-scroll.

Is there any solution where I can have both the scrolls telling ionic to scroll the page when the user scroll up/down and scroll the elements when user scroll left/right?

Thanks.