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 /js/bootstrap-carousel.js
parent66b70016d0f083098c32ad051173e6f52a6b2084 (diff)
remove slide from carousel constructor #5579
Diffstat (limited to 'js/bootstrap-carousel.js')
-rw-r--r--js/bootstrap-carousel.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/js/bootstrap-carousel.js b/js/bootstrap-carousel.js
index ba26a5cd49..238ff42801 100644
--- a/js/bootstrap-carousel.js
+++ b/js/bootstrap-carousel.js
@@ -29,7 +29,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))