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-20 11:39:26 +0400
committerfat <jacobthornton@gmail.com>2012-12-20 11:39:26 +0400
commitbbe4625672c5122bb2b06c495f9ea41752c10467 (patch)
treeda0dcc4bf5fb7bfbed012e186fb28fc1658f2595 /docs/assets/js/bootstrap.js
parent7f9ff0ba5b679914defd8bdd45bcf930ee201286 (diff)
lol we dont' have affix(refresh)
Diffstat (limited to 'docs/assets/js/bootstrap.js')
-rw-r--r--docs/assets/js/bootstrap.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/assets/js/bootstrap.js b/docs/assets/js/bootstrap.js
index f9f8487c32..2e06798f2a 100644
--- a/docs/assets/js/bootstrap.js
+++ b/docs/assets/js/bootstrap.js
@@ -358,7 +358,6 @@
, isCycling = this.interval
, direction = type == 'next' ? 'left' : 'right'
, fallback = type == 'next' ? 'first' : 'last'
- , $nextIndicator
, that = this
, e
@@ -377,7 +376,7 @@
if (this.$indicators.length) {
this.$indicators.find('.active').removeClass('active')
this.$element.one('slid', function () {
- $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
+ var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
$nextIndicator && $nextIndicator.addClass('active')
})
}