Carousel slide transitionend invoked by controls/indicators transitions
Created by: ixisio
If the control / indicator elements are animated trough CSS3 Transitions, the slide transition.end Event will be triggered. The event target is not directly pointing to .item
, so each animated element inside the carousel dom element invokes transition.end.
If you attach the Event directly to the sliding elements instead of the carousel wrapper element, everything works as it should:
- this.$element.one($.support.transition.end, function () {
+ this.$element.find('.item').one($.support.transition.end, function () {
Cheeeeers, andy