You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2018. It is now read-only.
I note that on Andorid native browser the carousel hangs up through two images. The problem mainly occurs when swiping fast through the images, see screenshot made on Samsung Galaxy S4.
The text was updated successfully, but these errors were encountered:
Same with me - this happens with the latest version of the angular-carousel and is valid for Android and iPad.
I was able to reproduce it in Chromium also the same way.
What I found is that it is easier to simulate it this way:
swipe left or right and release
the slider is transitioning and there is a little pause right before the slide gets its final position
during the above period swipe left/right or right/left and release
the issue is there
The issue is a bit tough to reproduce, because of the timing you need to achieve.
My guess is that it is either some events overlap or some calculations and rounding issue. Last but not least may be the $scope.$digest call may make some issue also, since it is called somewhere around the time of the issue.
Hope my findings help, I am also after this issue by the way.
I was wondering if you were able to find a solution for the issue as I've experienced it myself.
you mentioned it might be something with the "touchcancel", if you feel this is the right path to start looking for the issue do you mind pin-pointing the line of code. I might have time to spent and see if I can find anything that can help.
In the swipeEnd function, it get the same destination and offset when calculating the amplitude. So it call requestAnimationFrame(autoScroll) with an amplitude of zero, and the autoScroll method do nothing with an amplitude of zero, so it get stuck there. It happen almost all of the time on an ipad 2 while buffering slides and swiping fast, but i could also get a slide stuck while swiping really fast at the end of the carousel (with no buffering).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I note that on Andorid native browser the carousel hangs up through two images. The problem mainly occurs when swiping fast through the images, see screenshot made on Samsung Galaxy S4.
The text was updated successfully, but these errors were encountered: