You can use $ionicScrollDelegate.freezeAllScrolls(true);
It doesn't work straight off the bat - you need to wrap it in a $timeout - although I don't like using timeouts if I can help it so there may may be a better way to do it than this.
This worked for me:
$timeout(function(){
$ionicScrollDelegate.freezeAllScrolls(true);
});
Hope this helps