From: Islam Sharabash Date: Thu, 16 Jan 2014 17:34:16 +0000 (-0800) Subject: Fixing js error in IE9 where no transition is supported X-Git-Tag: v3.1.0~86^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F12258%2Fhead;p=thirdparty%2Fbootstrap.git Fixing js error in IE9 where no transition is supported --- 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) }