2013-05-21 22:30:33 -04:00
|
|
|
/* ========================================================================
|
2013-12-24 15:16:17 -05:00
|
|
|
* Bootstrap: scrollspy.js v3.0.3
|
2013-10-29 13:10:47 -04:00
|
|
|
* http://getbootstrap.com/javascript/#scrollspy
|
2013-05-21 22:30:33 -04:00
|
|
|
* ========================================================================
|
2014-01-06 19:05:24 -05:00
|
|
|
* Copyright 2011-2014 Twitter, Inc.
|
2013-12-18 18:28:08 -05:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2013-05-21 22:30:33 -04:00
|
|
|
* ======================================================================== */
|
2011-09-11 01:24:31 -04:00
|
|
|
|
2012-03-24 21:59:04 -04:00
|
|
|
|
2013-09-18 12:50:02 -04:00
|
|
|
+function ($) { 'use strict';
|
2012-04-14 19:29:53 -04:00
|
|
|
|
2013-05-16 20:18:15 -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) {
|
2013-05-16 20:18:15 -04:00
|
|
|
var href
|
|
|
|
var process = $.proxy(this.process, this)
|
|
|
|
|
2013-07-27 01:24:51 -04:00
|
|
|
this.$element = $(element).is('body') ? $(window) : $(element)
|
2013-05-16 20:18:15 -04:00
|
|
|
this.$body = $('body')
|
2013-07-27 01:24:51 -04:00
|
|
|
this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
|
2013-05-16 20:18:15 -04:00
|
|
|
this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
|
|
|
|
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'
|
2013-05-16 20:18:15 -04:00
|
|
|
this.offsets = $([])
|
|
|
|
this.targets = $([])
|
|
|
|
this.activeTarget = null
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
ScrollSpy.DEFAULTS = {
|
|
|
|
offset: 10
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollSpy.prototype.refresh = function () {
|
2013-07-27 01:24:51 -04:00
|
|
|
var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
|
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
this.offsets = $([])
|
|
|
|
this.targets = $([])
|
|
|
|
|
|
|
|
var self = this
|
|
|
|
var $targets = this.$body
|
|
|
|
.find(this.selector)
|
|
|
|
.map(function () {
|
|
|
|
var $el = $(this)
|
|
|
|
var href = $el.data('target') || $el.attr('href')
|
2013-12-24 01:08:43 -05:00
|
|
|
var $href = /^#./.test(href) && $(href)
|
2013-05-16 20:18:15 -04:00
|
|
|
|
|
|
|
return ($href
|
|
|
|
&& $href.length
|
2013-10-22 07:31:23 -04:00
|
|
|
&& $href.is(':visible')
|
2013-07-27 01:24:51 -04:00
|
|
|
&& [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
|
2013-05-16 20:18:15 -04:00
|
|
|
})
|
|
|
|
.sort(function (a, b) { return a[0] - b[0] })
|
|
|
|
.each(function () {
|
|
|
|
self.offsets.push(this[0])
|
|
|
|
self.targets.push(this[1])
|
|
|
|
})
|
|
|
|
}
|
2011-09-11 01:14:57 -04:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
ScrollSpy.prototype.process = function () {
|
|
|
|
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
|
|
|
|
var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
|
|
|
|
var maxScroll = scrollHeight - this.$scrollElement.height()
|
|
|
|
var offsets = this.offsets
|
|
|
|
var targets = this.targets
|
|
|
|
var activeTarget = this.activeTarget
|
|
|
|
var i
|
|
|
|
|
|
|
|
if (scrollTop >= maxScroll) {
|
|
|
|
return activeTarget != (i = targets.last()[0]) && this.activate(i)
|
|
|
|
}
|
|
|
|
|
2013-11-04 12:09:48 -05:00
|
|
|
if (activeTarget && scrollTop <= offsets[0]) {
|
2013-12-29 21:04:43 -05:00
|
|
|
return activeTarget != (i = targets[0]) && this.activate(i)
|
2013-11-04 12:09:48 -05:00
|
|
|
}
|
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
for (i = offsets.length; i--;) {
|
|
|
|
activeTarget != targets[i]
|
|
|
|
&& scrollTop >= offsets[i]
|
|
|
|
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1])
|
|
|
|
&& this.activate( targets[i] )
|
|
|
|
}
|
2011-09-11 01:14:57 -04:00
|
|
|
}
|
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
ScrollSpy.prototype.activate = function (target) {
|
|
|
|
this.activeTarget = target
|
|
|
|
|
|
|
|
$(this.selector)
|
2013-12-25 23:33:05 -05:00
|
|
|
.parentsUntil(this.options.target, '.active')
|
2013-05-16 20:18:15 -04:00
|
|
|
.removeClass('active')
|
|
|
|
|
2013-12-19 09:32:37 -05:00
|
|
|
var selector = this.selector +
|
|
|
|
'[data-target="' + target + '"],' +
|
|
|
|
this.selector + '[href="' + target + '"]'
|
2011-11-24 23:27:18 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
var active = $(selector)
|
|
|
|
.parents('li')
|
|
|
|
.addClass('active')
|
|
|
|
|
2013-12-19 09:32:37 -05:00
|
|
|
if (active.parent('.dropdown-menu').length) {
|
2013-05-16 20:18:15 -04:00
|
|
|
active = active
|
|
|
|
.closest('li.dropdown')
|
|
|
|
.addClass('active')
|
|
|
|
}
|
|
|
|
|
2013-11-15 02:58:29 -05:00
|
|
|
active.trigger('activate.bs.scrollspy')
|
2013-05-16 20:18:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// SCROLLSPY PLUGIN DEFINITION
|
|
|
|
// ===========================
|
2011-11-24 23:27:18 -05:00
|
|
|
|
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 () {
|
2013-05-16 20:18:15 -04:00
|
|
|
var $this = $(this)
|
2013-05-16 23:19:51 -04:00
|
|
|
var data = $this.data('bs.scrollspy')
|
2013-05-16 20:18:15 -04:00
|
|
|
var options = typeof option == 'object' && option
|
|
|
|
|
2013-05-16 23:19:51 -04:00
|
|
|
if (!data) $this.data('bs.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
|
|
|
|
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
// SCROLLSPY NO CONFLICT
|
|
|
|
// =====================
|
2012-12-07 17:06:01 -05:00
|
|
|
|
|
|
|
$.fn.scrollspy.noConflict = function () {
|
|
|
|
$.fn.scrollspy = old
|
|
|
|
return this
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
// SCROLLSPY DATA-API
|
|
|
|
// ==================
|
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
|
|
|
|
2013-08-22 14:50:15 -04:00
|
|
|
}(jQuery);
|