Slidebox in modal not sliding anymore in beta14

My modal:

    <ion-modal-view>
	<ion-slide-box show-pager="false" auto-play="false" does-continue="false">
    	       <ion-slide>
    		<!-- side 1 html -->
<button ng-click="goToNextSlide()">Next slide</button>
		</ion-slide>
		<ion-slide>
			<!-- slide 2 html -->
		</ion-slide>
	</ion-slide-box>
</ion-modal-view>

My goToNextSlide()

    $scope.goToNextSlide = function() 
{
    alert('clicked');
    $ionicSlideBoxDelegate.next();
}

I get the ‘clicked’ popup but no slide. This worked ok in beta13.
Note that i have another slidebox but NOT inside a modal, which works ok in beta14. So it has something to do with being in a modal. Any ideas?

Yes.

All the modal examples like thiese is also not working in the modal view

http://devdactic.com/images-videos-fullscreen-ionic/

@bingojo Did you solve it by any chance?