aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/js/bootstrap.js
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2012-06-02 21:09:13 -0700
committerJacob Thornton <[email protected]>2012-06-02 21:09:13 -0700
commitebc1fe907d5dede1c7251dc1a25b9015a7f779d7 (patch)
treef076919bba3c0b956692d334475f6b5c6a4282cf /docs/assets/js/bootstrap.js
parent3a751a63d45814cab973cd6d9ca9fddf78a1a842 (diff)
downloadbootstrap-ebc1fe907d5dede1c7251dc1a25b9015a7f779d7.tar.xz
bootstrap-ebc1fe907d5dede1c7251dc1a25b9015a7f779d7.zip
only trigger $.support.transition.end when it exists
Diffstat (limited to 'docs/assets/js/bootstrap.js')
-rw-r--r--docs/assets/js/bootstrap.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/assets/js/bootstrap.js b/docs/assets/js/bootstrap.js
index 176cafa04..eeef82d31 100644
--- a/docs/assets/js/bootstrap.js
+++ b/docs/assets/js/bootstrap.js
@@ -312,7 +312,7 @@
, pause: function (e) {
if (!e) this.paused = true
- if (this.$element.find('.next, .prev')) {
+ if (this.$element.find('.next, .prev') && $.support.transition.end) {
this.$element.trigger($.support.transition.end)
this.cycle()
}