Ion-slide-box broken on Android 5.0

Hi,
i am using ion-slide-box, and i freeze the movement up and down wile user slide and not leaving the screen.
it all went well until i updated my phone to 5.0, now i cannot freeze the up and down wile moving left and right.

  • this code is working 100% in all other versions - android
    here is the function i am using:

    $scope.canIScroll = true;
    $scope.onRelease = function (dataType) {
    $scope.canIScroll = true;
    $ionicScrollDelegate.$getByHandle(‘myslide’).freezeScroll(false);
    $timeout(function(parameters) {
    $scope.canIScroll = true;
    $ionicScrollDelegate.$getByHandle(‘myslide’).freezeScroll(false);
    }, 50);
    };
    $scope.onDragLeft = function (dataType) {
    if ($scope.canIScroll) {
    $scope.canIScroll = false;
    $ionicScrollDelegate.$getByHandle(‘myslide’).freezeScroll(true);
    }
    };
    $scope.onDragRight = function (dataType) {
    if ($scope.canIScroll) {
    $scope.canIScroll = false;
    $ionicScrollDelegate.$getByHandle(‘myslide’).freezeScroll(true);
    }
    };

thanks…