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 29, 2019. It is now read-only.
User frequently clicks on links "go to slide ##", sometimes user see two or three slides at the same time.
When user see few slides he clicks on navigation button that appears above the links (left arrow, that means go to previous slide).
If user repeat these action few times the control will be broken.
The text was updated successfully, but these errors were encountered:
I've used 1.0.0 version in my example. Previous version breaks when user clicks the links very often (without clicking navigation button at all). Now if user clicks only links... few slides appears as well, but one of them disappears after some time.
Full break of the control might be solved by adding nextSlide.active = false next to place a slide to a buffer
//Prevent this user-triggered transition from occurring if there is already one in progress
if (nextSlide && nextSlide !== self.currentSlide && !$scope.$currentTransition) {
goNext(nextSlide, nextIndex, direction);
} else if (nextSlide && nextSlide !== self.currentSlide && $scope.$currentTransition) {
bufferedTransitions.push(nextSlide);
nextSlide.active = false; // <--- Here
}
I may create PR if needed
mazavr
added a commit
to mazavr/bootstrap
that referenced
this issue
Jan 10, 2016
Chrome 47.0.2526.106 m
Please, see http://plnkr.co/edit/mk5Pby?p=preview
User frequently clicks on links "go to slide ##", sometimes user see two or three slides at the same time.
When user see few slides he clicks on navigation button that appears above the links (left arrow, that means go to previous slide).
If user repeat these action few times the control will be broken.
The text was updated successfully, but these errors were encountered: