From ad64b0acc826a1ad1b1adc719960ac3020cc3539 Mon Sep 17 00:00:00 2001 From: Islam Sharabash Date: Thu, 16 Jan 2014 09:34:16 -0800 Subject: [PATCH] Fixing js error in IE9 where no transition is supported --- js/carousel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/carousel.js b/js/carousel.js index e1e63f8af8..a1617aec72 100644 --- a/js/carousel.js +++ b/js/carousel.js @@ -68,7 +68,7 @@ Carousel.prototype.pause = function (e) { e || (this.paused = true) - if (this.$element.find('.next, .prev').length && $.support.transition.end) { + if (this.$element.find('.next, .prev').length && $.support.transition) { this.$element.trigger($.support.transition.end) this.cycle(true) }