aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/js/bootstrap-affix.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-10-29 22:01:58 -0700
committerMark Otto <[email protected]>2012-10-29 22:01:58 -0700
commitb5af762ef59e1fa97f4386f5feadb67aa5183fef (patch)
tree3bcd0841e6938379e8c8ae7259ee16f27a49ea41 /docs/assets/js/bootstrap-affix.js
parent7426ced0fb288a9e86f18da1849ad74f652d219a (diff)
parent68cfedb34af198f178128f8c9bc8ea164e44304a (diff)
downloadbootstrap-2.2.0.tar.xz
bootstrap-2.2.0.zip
Merge branch '2.1.2-wip'v2.2.0
Conflicts: js/bootstrap-dropdown.js
Diffstat (limited to 'docs/assets/js/bootstrap-affix.js')
-rw-r--r--docs/assets/js/bootstrap-affix.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/assets/js/bootstrap-affix.js b/docs/assets/js/bootstrap-affix.js
index c49d6e9da..264db5c33 100644
--- a/docs/assets/js/bootstrap-affix.js
+++ b/docs/assets/js/bootstrap-affix.js
@@ -1,5 +1,5 @@
/* ==========================================================
- * bootstrap-affix.js v2.1.1
+ * bootstrap-affix.js v2.2.0
* http://twitter.github.com/bootstrap/javascript.html#affix
* ==========================================================
* Copyright 2012 Twitter, Inc.
@@ -28,7 +28,9 @@
var Affix = function (element, options) {
this.options = $.extend({}, $.fn.affix.defaults, options)
- this.$window = $(window).on('scroll.affix.data-api', $.proxy(this.checkPosition, this))
+ this.$window = $(window)
+ .on('scroll.affix.data-api', $.proxy(this.checkPosition, this))
+ .on('click.affix.data-api', $.proxy(function () { setTimeout($.proxy(this.checkPosition, this), 1) }, this))
this.$element = $(element)
this.checkPosition()
}