Commit 190ae7bb authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #12258 from ibash/master

Fixing js error in IE9 where no transition is supported
parents 81610c60 ad64b0ac
Showing with 1 addition and 1 deletion
+1 -1
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
Carousel.prototype.pause = function (e) { Carousel.prototype.pause = function (e) {
e || (this.paused = true) 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.$element.trigger($.support.transition.end)
this.cycle(true) this.cycle(true)
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment