aboutsummaryrefslogtreecommitdiff
path: root/js/carousel.js
diff options
context:
space:
mode:
authorHeinrich Fenkart <[email protected]>2014-09-16 06:02:27 +0200
committerHeinrich Fenkart <[email protected]>2014-09-23 23:34:58 +0200
commitc37c1a67438b3c682bac3787069eb33fefa6f154 (patch)
tree563a37dee2c7e8cc840fd352500646b4a9d414c3 /js/carousel.js
parent4a3931d4c57e30f3ed01cc66092178bb9e565851 (diff)
downloadbootstrap-c37c1a67438b3c682bac3787069eb33fefa6f154.tar.xz
bootstrap-c37c1a67438b3c682bac3787069eb33fefa6f154.zip
Only enable `pause: hover` for non-touch browsers
Fixes #11967.
Diffstat (limited to 'js/carousel.js')
-rw-r--r--js/carousel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/carousel.js b/js/carousel.js
index 65cc7b912..4c9a1165c 100644
--- a/js/carousel.js
+++ b/js/carousel.js
@@ -23,7 +23,7 @@
this.$active =
this.$items = null
- this.options.pause == 'hover' && this.$element
+ this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element
.on('mouseenter.bs.carousel', $.proxy(this.pause, this))
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
}