]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fixing js error in IE9 where no transition is supported 12258/head
authorIslam Sharabash <islam.sharabash@gmail.com>
Thu, 16 Jan 2014 17:34:16 +0000 (09:34 -0800)
committerIslam Sharabash <islam.sharabash@gmail.com>
Thu, 16 Jan 2014 18:11:59 +0000 (10:11 -0800)
js/carousel.js

index e1e63f8af8d94edea78aaab2db13153bd1b99c52..a1617aec7219a0a322f49b1645fef280a5312e67 100644 (file)
@@ -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)
     }