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