diff options
| author | Chris Rebert <[email protected]> | 2014-01-16 10:18:52 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-01-16 10:18:52 -0800 |
| commit | 190ae7bb3175375ce095a63b44cc81f90e51105a (patch) | |
| tree | b46cbbe6c533297492346cf4bc8b2f69cd3a9e82 | |
| parent | 81610c6048844d4de43422ad978afa4c39718c4d (diff) | |
| parent | ad64b0acc826a1ad1b1adc719960ac3020cc3539 (diff) | |
| download | bootstrap-190ae7bb3175375ce095a63b44cc81f90e51105a.tar.xz bootstrap-190ae7bb3175375ce095a63b44cc81f90e51105a.zip | |
Merge pull request #12258 from ibash/master
Fixing js error in IE9 where no transition is supported
| -rw-r--r-- | js/carousel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/carousel.js b/js/carousel.js index e1e63f8af..a1617aec7 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) } |
