Skip to content

Commit

Permalink
fixing webkit carousel rotation (bug 659483)
Browse files Browse the repository at this point in the history
  • Loading branch information
potch committed May 25, 2011
1 parent 6da183a commit a5c9164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/js/impala/carousel.js
Expand Up @@ -69,7 +69,7 @@ $.fn.zCarousel = function(o) {
.append($lis.slice(0,o.itemsPerPage).clone().addClass("cloned"));
render(o.itemsPerPage);
//if we're outside the bounds, disable transitions and snap back to the beginning.
$strip.bind("transitionend", function() {
$strip.bind("transitionend webkitTransitionEnd", function() {
if (currentPos > maxPos+1 || currentPos < 1) {
$strip.addClass("noslide");
setTimeout(function() {
Expand Down

0 comments on commit a5c9164

Please sign in to comment.