aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/assets/bootstrap.zipbin71274 -> 71315 bytes
-rw-r--r--docs/assets/js/bootstrap-carousel.js7
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip
index 267b9eab6..6e1a6f41c 100644
--- a/docs/assets/bootstrap.zip
+++ b/docs/assets/bootstrap.zip
Binary files differ
diff --git a/docs/assets/js/bootstrap-carousel.js b/docs/assets/js/bootstrap-carousel.js
index d1c3079e4..90f43a3eb 100644
--- a/docs/assets/js/bootstrap-carousel.js
+++ b/docs/assets/js/bootstrap-carousel.js
@@ -37,8 +37,10 @@
Carousel.prototype = {
- cycle: function () {
+ cycle: function (e) {
+ if (!e) this.paused = false
this.options.interval
+ && !this.paused
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
return this
}
@@ -64,7 +66,8 @@
return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos]))
}
- , pause: function () {
+ , pause: function (e) {
+ if (!e) this.paused = true
clearInterval(this.interval)
this.interval = null
return this