Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfat <jacobthornton@gmail.com>2012-12-08 02:49:05 +0400
committerfat <jacobthornton@gmail.com>2012-12-08 02:49:05 +0400
commit91fbadad5b058f160eb3b5eb8e88432e0088efee (patch)
treea913e2049fbe9def0d92354d20347c844f128d21 /docs/assets/js/bootstrap.js
parent66b70016d0f083098c32ad051173e6f52a6b2084 (diff)
remove slide from carousel constructor #5579
Diffstat (limited to 'docs/assets/js/bootstrap.js')
-rw-r--r--docs/assets/js/bootstrap.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/assets/js/bootstrap.js b/docs/assets/js/bootstrap.js
index e6bcfb62af..422699ce12 100644
--- a/docs/assets/js/bootstrap.js
+++ b/docs/assets/js/bootstrap.js
@@ -290,7 +290,6 @@
var Carousel = function (element, options) {
this.$element = $(element)
this.options = options
- this.options.slide && this.slide(this.options.slide)
this.options.pause == 'hover' && this.$element
.on('mouseenter', $.proxy(this.pause, this))
.on('mouseleave', $.proxy(this.cycle, this))