2011-09-11 01:14:57 -04:00
|
|
|
/* =============================================================
|
2012-12-10 21:31:04 -05:00
|
|
|
* bootstrap-scrollspy.js v2.2.3
|
2011-09-11 01:14:57 -04:00
|
|
|
* http://twitter.github.com/bootstrap/javascript.html#scrollspy
|
|
|
|
* =============================================================
|
2012-01-15 02:28:48 -05:00
|
|
|
* Copyright 2012 Twitter, Inc.
|
2011-09-11 01:14:57 -04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-09-11 01:24:31 -04:00
|
|
|
* ============================================================== */
|
|
|
|
|
2012-03-24 21:59:04 -04:00
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
!function ($) {
|
|
|
|
|
|
|
|
"use strict"; // jshint ;_;
|
2011-09-11 01:14:57 -04:00
|
|
|
|
2011-11-24 23:27:18 -05:00
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
/* SCROLLSPY CLASS DEFINITION
|
|
|
|
* ========================== */
|
2011-11-24 23:27:18 -05:00
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
function ScrollSpy(element, options) {
|
2011-10-20 02:12:50 -04:00
|
|
|
var process = $.proxy(this.process, this)
|
2012-01-25 01:33:33 -05:00
|
|
|
, $element = $(element).is('body') ? $(window) : $(element)
|
2012-01-28 04:35:13 -05:00
|
|
|
, href
|
2012-01-22 00:35:20 -05:00
|
|
|
this.options = $.extend({}, $.fn.scrollspy.defaults, options)
|
2012-07-22 21:28:39 -04:00
|
|
|
this.$scrollElement = $element.on('scroll.scroll-spy.data-api', process)
|
2012-01-25 01:33:33 -05:00
|
|
|
this.selector = (this.options.target
|
2012-01-28 04:35:13 -05:00
|
|
|
|| ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
2011-11-27 20:04:55 -05:00
|
|
|
|| '') + ' .nav li > a'
|
2012-04-26 00:52:05 -04:00
|
|
|
this.$body = $('body')
|
2011-09-11 23:08:43 -04:00
|
|
|
this.refresh()
|
2011-10-20 02:12:50 -04:00
|
|
|
this.process()
|
2011-09-11 01:14:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ScrollSpy.prototype = {
|
|
|
|
|
2011-12-01 01:42:22 -05:00
|
|
|
constructor: ScrollSpy
|
|
|
|
|
|
|
|
, refresh: function () {
|
2012-03-22 02:45:58 -04:00
|
|
|
var self = this
|
|
|
|
, $targets
|
|
|
|
|
2012-03-24 21:20:09 -04:00
|
|
|
this.offsets = $([])
|
|
|
|
this.targets = $([])
|
2012-03-22 02:45:58 -04:00
|
|
|
|
|
|
|
$targets = this.$body
|
2011-11-20 23:58:04 -05:00
|
|
|
.find(this.selector)
|
|
|
|
.map(function () {
|
2012-04-18 16:35:14 -04:00
|
|
|
var $el = $(this)
|
|
|
|
, href = $el.data('target') || $el.attr('href')
|
2012-03-22 02:51:32 -04:00
|
|
|
, $href = /^#\w/.test(href) && $(href)
|
2012-03-22 02:59:27 -04:00
|
|
|
return ( $href
|
2012-06-02 21:15:23 -04:00
|
|
|
&& $href.length
|
2012-12-03 19:21:07 -05:00
|
|
|
&& [[ $href.position().top + self.$scrollElement.scrollTop(), href ]] ) || null
|
2012-03-22 02:45:58 -04:00
|
|
|
})
|
|
|
|
.sort(function (a, b) { return a[0] - b[0] })
|
|
|
|
.each(function () {
|
|
|
|
self.offsets.push(this[0])
|
|
|
|
self.targets.push(this[1])
|
2011-11-20 23:58:04 -05:00
|
|
|
})
|
2011-09-11 01:14:57 -04:00
|
|
|
}
|
|
|
|
|
2011-10-20 02:12:50 -04:00
|
|
|
, process: function () {
|
2012-01-22 00:35:20 -05:00
|
|
|
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
|
2012-03-19 18:18:00 -04:00
|
|
|
, scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
|
|
|
|
, maxScroll = scrollHeight - this.$scrollElement.height()
|
2011-09-11 01:14:57 -04:00
|
|
|
, offsets = this.offsets
|
|
|
|
, targets = this.targets
|
|
|
|
, activeTarget = this.activeTarget
|
|
|
|
, i
|
|
|
|
|
2012-03-19 18:18:00 -04:00
|
|
|
if (scrollTop >= maxScroll) {
|
|
|
|
return activeTarget != (i = targets.last()[0])
|
2012-03-19 18:19:01 -04:00
|
|
|
&& this.activate ( i )
|
2012-03-19 18:18:00 -04:00
|
|
|
}
|
|
|
|
|
2011-09-11 01:14:57 -04:00
|
|
|
for (i = offsets.length; i--;) {
|
|
|
|
activeTarget != targets[i]
|
|
|
|
&& scrollTop >= offsets[i]
|
|
|
|
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1])
|
2011-10-20 02:12:50 -04:00
|
|
|
&& this.activate( targets[i] )
|
2011-09-11 01:14:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-20 02:12:50 -04:00
|
|
|
, activate: function (target) {
|
|
|
|
var active
|
2012-04-18 16:35:14 -04:00
|
|
|
, selector
|
2011-10-20 02:12:50 -04:00
|
|
|
|
2011-09-11 01:14:57 -04:00
|
|
|
this.activeTarget = target
|
|
|
|
|
2012-04-15 02:24:19 -04:00
|
|
|
$(this.selector)
|
|
|
|
.parent('.active')
|
2011-09-11 01:14:57 -04:00
|
|
|
.removeClass('active')
|
|
|
|
|
2012-04-18 16:35:14 -04:00
|
|
|
selector = this.selector
|
|
|
|
+ '[data-target="' + target + '"],'
|
|
|
|
+ this.selector + '[href="' + target + '"]'
|
|
|
|
|
|
|
|
active = $(selector)
|
2011-09-11 01:14:57 -04:00
|
|
|
.parent('li')
|
|
|
|
.addClass('active')
|
2011-10-20 02:12:50 -04:00
|
|
|
|
2012-06-02 22:02:30 -04:00
|
|
|
if (active.parent('.dropdown-menu').length) {
|
2012-03-19 19:09:08 -04:00
|
|
|
active = active.closest('li.dropdown').addClass('active')
|
2011-10-20 02:12:50 -04:00
|
|
|
}
|
2012-03-19 19:09:08 -04:00
|
|
|
|
2012-03-19 23:24:46 -04:00
|
|
|
active.trigger('activate')
|
2011-09-11 01:14:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-24 23:27:18 -05:00
|
|
|
|
|
|
|
/* SCROLLSPY PLUGIN DEFINITION
|
|
|
|
* =========================== */
|
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
var old = $.fn.scrollspy
|
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
$.fn.scrollspy = function (option) {
|
2011-11-24 23:27:18 -05:00
|
|
|
return this.each(function () {
|
|
|
|
var $this = $(this)
|
|
|
|
, data = $this.data('scrollspy')
|
2012-01-22 00:35:20 -05:00
|
|
|
, options = typeof option == 'object' && option
|
|
|
|
if (!data) $this.data('scrollspy', (data = new ScrollSpy(this, options)))
|
2011-11-24 23:27:18 -05:00
|
|
|
if (typeof option == 'string') data[option]()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2011-12-21 02:28:48 -05:00
|
|
|
$.fn.scrollspy.Constructor = ScrollSpy
|
2011-11-24 23:27:18 -05:00
|
|
|
|
2012-01-22 00:35:20 -05:00
|
|
|
$.fn.scrollspy.defaults = {
|
|
|
|
offset: 10
|
|
|
|
}
|
|
|
|
|
2011-11-24 23:27:18 -05:00
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
/* SCROLLSPY NO CONFLICT
|
|
|
|
* ===================== */
|
|
|
|
|
|
|
|
$.fn.scrollspy.noConflict = function () {
|
|
|
|
$.fn.scrollspy = old
|
|
|
|
return this
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-24 23:27:18 -05:00
|
|
|
/* SCROLLSPY DATA-API
|
2012-01-25 01:33:33 -05:00
|
|
|
* ================== */
|
2011-11-24 23:27:18 -05:00
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
$(window).on('load', function () {
|
2012-01-25 01:33:33 -05:00
|
|
|
$('[data-spy="scroll"]').each(function () {
|
|
|
|
var $spy = $(this)
|
|
|
|
$spy.scrollspy($spy.data())
|
|
|
|
})
|
2012-01-22 00:35:20 -05:00
|
|
|
})
|
2011-09-11 23:08:43 -04:00
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
}(window.jQuery);
|