1 /* ===================================================
2 * bootstrap-transition.js v2.3.1
3 * http://twitter.github.com/bootstrap/javascript.html#transitions
4 * ===================================================
5 * Copyright 2012 Twitter, Inc.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ========================================================== */
23 "use strict"; // jshint ;_;
26 /* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
27 * ======================================================= */
31 $.support.transition = (function () {
33 var transitionEnd = (function () {
35 var el = document.createElement('bootstrap')
36 , transEndEventNames = {
37 'WebkitTransition' : 'webkitTransitionEnd'
38 , 'MozTransition' : 'transitionend'
39 , 'OTransition' : 'oTransitionEnd otransitionend'
40 , 'transition' : 'transitionend'
44 for (name in transEndEventNames){
45 if (el.style[name] !== undefined) {
46 return transEndEventNames[name]
52 return transitionEnd && {
60 }(window.jQuery);/* ==========================================================
61 * bootstrap-alert.js v2.3.1
62 * http://twitter.github.com/bootstrap/javascript.html#alerts
63 * ==========================================================
64 * Copyright 2012 Twitter, Inc.
66 * Licensed under the Apache License, Version 2.0 (the "License");
67 * you may not use this file except in compliance with the License.
68 * You may obtain a copy of the License at
70 * http://www.apache.org/licenses/LICENSE-2.0
72 * Unless required by applicable law or agreed to in writing, software
73 * distributed under the License is distributed on an "AS IS" BASIS,
74 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
75 * See the License for the specific language governing permissions and
76 * limitations under the License.
77 * ========================================================== */
82 "use strict"; // jshint ;_;
85 /* ALERT CLASS DEFINITION
86 * ====================== */
88 var dismiss = '[data-dismiss="alert"]'
89 , Alert = function (el) {
90 $(el).on('click', dismiss, this.close)
93 Alert.prototype.close = function (e) {
95 , selector = $this.attr('data-target')
99 selector = $this.attr('href')
100 selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
103 $parent = $(selector)
105 e && e.preventDefault()
107 $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent())
109 $parent.trigger(e = $.Event('close'))
111 if (e.isDefaultPrevented()) return
113 $parent.removeClass('in')
115 function removeElement() {
121 $.support.transition && $parent.hasClass('fade') ?
122 $parent.on($.support.transition.end, removeElement) :
127 /* ALERT PLUGIN DEFINITION
128 * ======================= */
132 $.fn.alert = function (option) {
133 return this.each(function () {
135 , data = $this.data('alert')
136 if (!data) $this.data('alert', (data = new Alert(this)))
137 if (typeof option == 'string') data[option].call($this)
141 $.fn.alert.Constructor = Alert
145 * ================= */
147 $.fn.alert.noConflict = function () {
156 $(document).on('click.alert.data-api', dismiss, Alert.prototype.close)
158 }(window.jQuery);/* ============================================================
159 * bootstrap-button.js v2.3.1
160 * http://twitter.github.com/bootstrap/javascript.html#buttons
161 * ============================================================
162 * Copyright 2012 Twitter, Inc.
164 * Licensed under the Apache License, Version 2.0 (the "License");
165 * you may not use this file except in compliance with the License.
166 * You may obtain a copy of the License at
168 * http://www.apache.org/licenses/LICENSE-2.0
170 * Unless required by applicable law or agreed to in writing, software
171 * distributed under the License is distributed on an "AS IS" BASIS,
172 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
173 * See the License for the specific language governing permissions and
174 * limitations under the License.
175 * ============================================================ */
180 "use strict"; // jshint ;_;
183 /* BUTTON PUBLIC CLASS DEFINITION
184 * ============================== */
186 var Button = function (element, options) {
187 this.$element = $(element)
188 this.options = $.extend({}, $.fn.button.defaults, options)
191 Button.prototype.setState = function (state) {
193 , $el = this.$element
195 , val = $el.is('input') ? 'val' : 'html'
197 state = state + 'Text'
198 data.resetText || $el.data('resetText', $el[val]())
200 $el[val](data[state] || this.options[state])
202 // push to event loop to allow forms to submit
203 setTimeout(function () {
204 state == 'loadingText' ?
205 $el.addClass(d).attr(d, d) :
206 $el.removeClass(d).removeAttr(d)
210 Button.prototype.toggle = function () {
211 var $parent = this.$element.closest('[data-toggle="buttons-radio"]')
215 .removeClass('active')
217 this.$element.toggleClass('active')
221 /* BUTTON PLUGIN DEFINITION
222 * ======================== */
224 var old = $.fn.button
226 $.fn.button = function (option) {
227 return this.each(function () {
229 , data = $this.data('button')
230 , options = typeof option == 'object' && option
231 if (!data) $this.data('button', (data = new Button(this, options)))
232 if (option == 'toggle') data.toggle()
233 else if (option) data.setState(option)
237 $.fn.button.defaults = {
238 loadingText: 'loading...'
241 $.fn.button.Constructor = Button
244 /* BUTTON NO CONFLICT
245 * ================== */
247 $.fn.button.noConflict = function () {
256 $(document).on('click.button.data-api', '[data-toggle^=button]', function (e) {
257 var $btn = $(e.target)
258 if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
259 $btn.button('toggle')
262 }(window.jQuery);/* ==========================================================
263 * bootstrap-carousel.js v2.3.1
264 * http://twitter.github.com/bootstrap/javascript.html#carousel
265 * ==========================================================
266 * Copyright 2012 Twitter, Inc.
268 * Licensed under the Apache License, Version 2.0 (the "License");
269 * you may not use this file except in compliance with the License.
270 * You may obtain a copy of the License at
272 * http://www.apache.org/licenses/LICENSE-2.0
274 * Unless required by applicable law or agreed to in writing, software
275 * distributed under the License is distributed on an "AS IS" BASIS,
276 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
277 * See the License for the specific language governing permissions and
278 * limitations under the License.
279 * ========================================================== */
284 "use strict"; // jshint ;_;
287 /* CAROUSEL CLASS DEFINITION
288 * ========================= */
290 var Carousel = function (element, options) {
291 this.$element = $(element)
292 this.$indicators = this.$element.find('.carousel-indicators')
293 this.options = options
294 this.options.pause == 'hover' && this.$element
295 .on('mouseenter', $.proxy(this.pause, this))
296 .on('mouseleave', $.proxy(this.cycle, this))
299 Carousel.prototype = {
301 cycle: function (e) {
302 if (!e) this.paused = false
303 if (this.interval) clearInterval(this.interval);
304 this.options.interval
306 && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
310 , getActiveIndex: function () {
311 this.$active = this.$element.find('.item.active')
312 this.$items = this.$active.parent().children()
313 return this.$items.index(this.$active)
316 , to: function (pos) {
317 var activeIndex = this.getActiveIndex()
320 if (pos > (this.$items.length - 1) || pos < 0) return
323 return this.$element.one('slid', function () {
328 if (activeIndex == pos) {
329 return this.pause().cycle()
332 return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
335 , pause: function (e) {
336 if (!e) this.paused = true
337 if (this.$element.find('.next, .prev').length && $.support.transition.end) {
338 this.$element.trigger($.support.transition.end)
341 clearInterval(this.interval)
346 , next: function () {
347 if (this.sliding) return
348 return this.slide('next')
351 , prev: function () {
352 if (this.sliding) return
353 return this.slide('prev')
356 , slide: function (type, next) {
357 var $active = this.$element.find('.item.active')
358 , $next = next || $active[type]()
359 , isCycling = this.interval
360 , direction = type == 'next' ? 'left' : 'right'
361 , fallback = type == 'next' ? 'first' : 'last'
367 isCycling && this.pause()
369 $next = $next.length ? $next : this.$element.find('.item')[fallback]()
371 e = $.Event('slide', {
372 relatedTarget: $next[0]
373 , direction: direction
376 if ($next.hasClass('active')) return
378 if (this.$indicators.length) {
379 this.$indicators.find('.active').removeClass('active')
380 this.$element.one('slid', function () {
381 var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
382 $nextIndicator && $nextIndicator.addClass('active')
386 if ($.support.transition && this.$element.hasClass('slide')) {
387 this.$element.trigger(e)
388 if (e.isDefaultPrevented()) return
390 $next[0].offsetWidth // force reflow
391 $active.addClass(direction)
392 $next.addClass(direction)
393 this.$element.one($.support.transition.end, function () {
394 $next.removeClass([type, direction].join(' ')).addClass('active')
395 $active.removeClass(['active', direction].join(' '))
397 setTimeout(function () { that.$element.trigger('slid') }, 0)
400 this.$element.trigger(e)
401 if (e.isDefaultPrevented()) return
402 $active.removeClass('active')
403 $next.addClass('active')
405 this.$element.trigger('slid')
408 isCycling && this.cycle()
416 /* CAROUSEL PLUGIN DEFINITION
417 * ========================== */
419 var old = $.fn.carousel
421 $.fn.carousel = function (option) {
422 return this.each(function () {
424 , data = $this.data('carousel')
425 , options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option)
426 , action = typeof option == 'string' ? option : options.slide
427 if (!data) $this.data('carousel', (data = new Carousel(this, options)))
428 if (typeof option == 'number') data.to(option)
429 else if (action) data[action]()
430 else if (options.interval) data.pause().cycle()
434 $.fn.carousel.defaults = {
439 $.fn.carousel.Constructor = Carousel
442 /* CAROUSEL NO CONFLICT
443 * ==================== */
445 $.fn.carousel.noConflict = function () {
451 * ================= */
453 $(document).on('click.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
454 var $this = $(this), href
455 , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
456 , options = $.extend({}, $target.data(), $this.data())
459 $target.carousel(options)
461 if (slideIndex = $this.attr('data-slide-to')) {
462 $target.data('carousel').pause().to(slideIndex).cycle()
468 }(window.jQuery);/* =============================================================
469 * bootstrap-collapse.js v2.3.1
470 * http://twitter.github.com/bootstrap/javascript.html#collapse
471 * =============================================================
472 * Copyright 2012 Twitter, Inc.
474 * Licensed under the Apache License, Version 2.0 (the "License");
475 * you may not use this file except in compliance with the License.
476 * You may obtain a copy of the License at
478 * http://www.apache.org/licenses/LICENSE-2.0
480 * Unless required by applicable law or agreed to in writing, software
481 * distributed under the License is distributed on an "AS IS" BASIS,
482 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
483 * See the License for the specific language governing permissions and
484 * limitations under the License.
485 * ============================================================ */
490 "use strict"; // jshint ;_;
493 /* COLLAPSE PUBLIC CLASS DEFINITION
494 * ================================ */
496 var Collapse = function (element, options) {
497 this.$element = $(element)
498 this.options = $.extend({}, $.fn.collapse.defaults, options)
500 if (this.options.parent) {
501 this.$parent = $(this.options.parent)
504 this.options.toggle && this.toggle()
507 Collapse.prototype = {
509 constructor: Collapse
511 , dimension: function () {
512 var hasWidth = this.$element.hasClass('width')
513 return hasWidth ? 'width' : 'height'
516 , show: function () {
522 if (this.transitioning || this.$element.hasClass('in')) return
524 dimension = this.dimension()
525 scroll = $.camelCase(['scroll', dimension].join('-'))
526 actives = this.$parent && this.$parent.find('> .accordion-group > .in')
528 if (actives && actives.length) {
529 hasData = actives.data('collapse')
530 if (hasData && hasData.transitioning) return
531 actives.collapse('hide')
532 hasData || actives.data('collapse', null)
535 this.$element[dimension](0)
536 this.transition('addClass', $.Event('show'), 'shown')
537 $.support.transition && this.$element[dimension](this.$element[0][scroll])
540 , hide: function () {
542 if (this.transitioning || !this.$element.hasClass('in')) return
543 dimension = this.dimension()
544 this.reset(this.$element[dimension]())
545 this.transition('removeClass', $.Event('hide'), 'hidden')
546 this.$element[dimension](0)
549 , reset: function (size) {
550 var dimension = this.dimension()
553 .removeClass('collapse')
554 [dimension](size || 'auto')
557 this.$element[size !== null ? 'addClass' : 'removeClass']('collapse')
562 , transition: function (method, startEvent, completeEvent) {
564 , complete = function () {
565 if (startEvent.type == 'show') that.reset()
566 that.transitioning = 0
567 that.$element.trigger(completeEvent)
570 this.$element.trigger(startEvent)
572 if (startEvent.isDefaultPrevented()) return
574 this.transitioning = 1
576 this.$element[method]('in')
578 $.support.transition && this.$element.hasClass('collapse') ?
579 this.$element.one($.support.transition.end, complete) :
583 , toggle: function () {
584 this[this.$element.hasClass('in') ? 'hide' : 'show']()
590 /* COLLAPSE PLUGIN DEFINITION
591 * ========================== */
593 var old = $.fn.collapse
595 $.fn.collapse = function (option) {
596 return this.each(function () {
598 , data = $this.data('collapse')
599 , options = $.extend({}, $.fn.collapse.defaults, $this.data(), typeof option == 'object' && option)
600 if (!data) $this.data('collapse', (data = new Collapse(this, options)))
601 if (typeof option == 'string') data[option]()
605 $.fn.collapse.defaults = {
609 $.fn.collapse.Constructor = Collapse
612 /* COLLAPSE NO CONFLICT
613 * ==================== */
615 $.fn.collapse.noConflict = function () {
622 * ================= */
624 $(document).on('click.collapse.data-api', '[data-toggle=collapse]', function (e) {
625 var $this = $(this), href
626 , target = $this.attr('data-target')
627 || e.preventDefault()
628 || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
629 , option = $(target).data('collapse') ? 'toggle' : $this.data()
630 $this[$(target).hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
631 $(target).collapse(option)
634 }(window.jQuery);/* ============================================================
635 * bootstrap-dropdown.js v2.3.1
636 * http://twitter.github.com/bootstrap/javascript.html#dropdowns
637 * ============================================================
638 * Copyright 2012 Twitter, Inc.
640 * Licensed under the Apache License, Version 2.0 (the "License");
641 * you may not use this file except in compliance with the License.
642 * You may obtain a copy of the License at
644 * http://www.apache.org/licenses/LICENSE-2.0
646 * Unless required by applicable law or agreed to in writing, software
647 * distributed under the License is distributed on an "AS IS" BASIS,
648 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
649 * See the License for the specific language governing permissions and
650 * limitations under the License.
651 * ============================================================ */
656 "use strict"; // jshint ;_;
659 /* DROPDOWN CLASS DEFINITION
660 * ========================= */
662 var toggle = '[data-toggle=dropdown]'
663 , Dropdown = function (element) {
664 var $el = $(element).on('click.dropdown.data-api', this.toggle)
665 $('html').on('click.dropdown.data-api', function () {
666 $el.parent().removeClass('open')
670 Dropdown.prototype = {
672 constructor: Dropdown
674 , toggle: function (e) {
679 if ($this.is('.disabled, :disabled')) return
681 $parent = getParent($this)
683 isActive = $parent.hasClass('open')
688 $parent.toggleClass('open')
696 , keydown: function (e) {
704 if (!/(38|40|27)/.test(e.keyCode)) return
711 if ($this.is('.disabled, :disabled')) return
713 $parent = getParent($this)
715 isActive = $parent.hasClass('open')
717 if (!isActive || (isActive && e.keyCode == 27)) {
718 if (e.which == 27) $parent.find(toggle).focus()
722 $items = $('[role=menu] li:not(.divider):visible a', $parent)
724 if (!$items.length) return
726 index = $items.index($items.filter(':focus'))
728 if (e.keyCode == 38 && index > 0) index-- // up
729 if (e.keyCode == 40 && index < $items.length - 1) index++ // down
730 if (!~index) index = 0
739 function clearMenus() {
740 $(toggle).each(function () {
741 getParent($(this)).removeClass('open')
745 function getParent($this) {
746 var selector = $this.attr('data-target')
750 selector = $this.attr('href')
751 selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
754 $parent = selector && $(selector)
756 if (!$parent || !$parent.length) $parent = $this.parent()
762 /* DROPDOWN PLUGIN DEFINITION
763 * ========================== */
765 var old = $.fn.dropdown
767 $.fn.dropdown = function (option) {
768 return this.each(function () {
770 , data = $this.data('dropdown')
771 if (!data) $this.data('dropdown', (data = new Dropdown(this)))
772 if (typeof option == 'string') data[option].call($this)
776 $.fn.dropdown.Constructor = Dropdown
779 /* DROPDOWN NO CONFLICT
780 * ==================== */
782 $.fn.dropdown.noConflict = function () {
788 /* APPLY TO STANDARD DROPDOWN ELEMENTS
789 * =================================== */
792 .on('click.dropdown.data-api', clearMenus)
793 .on('click.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
794 .on('click.dropdown-menu', function (e) { e.stopPropagation() })
795 .on('click.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
796 .on('keydown.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
799 /* =========================================================
800 * bootstrap-modal.js v2.3.1
801 * http://twitter.github.com/bootstrap/javascript.html#modals
802 * =========================================================
803 * Copyright 2012 Twitter, Inc.
805 * Licensed under the Apache License, Version 2.0 (the "License");
806 * you may not use this file except in compliance with the License.
807 * You may obtain a copy of the License at
809 * http://www.apache.org/licenses/LICENSE-2.0
811 * Unless required by applicable law or agreed to in writing, software
812 * distributed under the License is distributed on an "AS IS" BASIS,
813 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
814 * See the License for the specific language governing permissions and
815 * limitations under the License.
816 * ========================================================= */
821 "use strict"; // jshint ;_;
824 /* MODAL CLASS DEFINITION
825 * ====================== */
827 var Modal = function (element, options) {
828 this.options = options
829 this.$element = $(element)
830 .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this))
831 this.options.remote && this.$element.find('.modal-body').load(this.options.remote)
838 , toggle: function () {
839 return this[!this.isShown ? 'show' : 'hide']()
842 , show: function () {
844 , e = $.Event('show')
846 this.$element.trigger(e)
848 if (this.isShown || e.isDefaultPrevented()) return
854 this.backdrop(function () {
855 var transition = $.support.transition && that.$element.hasClass('fade')
857 if (!that.$element.parent().length) {
858 that.$element.appendTo(document.body) //don't move modals dom position
864 that.$element[0].offsetWidth // force reflow
869 .attr('aria-hidden', false)
874 that.$element.one($.support.transition.end, function () { that.$element.focus().trigger('shown') }) :
875 that.$element.focus().trigger('shown')
880 , hide: function (e) {
881 e && e.preventDefault()
887 this.$element.trigger(e)
889 if (!this.isShown || e.isDefaultPrevented()) return
895 $(document).off('focusin.modal')
899 .attr('aria-hidden', true)
901 $.support.transition && this.$element.hasClass('fade') ?
902 this.hideWithTransition() :
906 , enforceFocus: function () {
908 $(document).on('focusin.modal', function (e) {
909 if (that.$element[0] !== e.target && !that.$element.has(e.target).length) {
910 that.$element.focus()
915 , escape: function () {
917 if (this.isShown && this.options.keyboard) {
918 this.$element.on('keyup.dismiss.modal', function ( e ) {
919 e.which == 27 && that.hide()
921 } else if (!this.isShown) {
922 this.$element.off('keyup.dismiss.modal')
926 , hideWithTransition: function () {
928 , timeout = setTimeout(function () {
929 that.$element.off($.support.transition.end)
933 this.$element.one($.support.transition.end, function () {
934 clearTimeout(timeout)
939 , hideModal: function () {
942 this.backdrop(function () {
943 that.removeBackdrop()
944 that.$element.trigger('hidden')
948 , removeBackdrop: function () {
949 this.$backdrop && this.$backdrop.remove()
950 this.$backdrop = null
953 , backdrop: function (callback) {
955 , animate = this.$element.hasClass('fade') ? 'fade' : ''
957 if (this.isShown && this.options.backdrop) {
958 var doAnimate = $.support.transition && animate
960 this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
961 .appendTo(document.body)
963 this.$backdrop.click(
964 this.options.backdrop == 'static' ?
965 $.proxy(this.$element[0].focus, this.$element[0])
966 : $.proxy(this.hide, this)
969 if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
971 this.$backdrop.addClass('in')
973 if (!callback) return
976 this.$backdrop.one($.support.transition.end, callback) :
979 } else if (!this.isShown && this.$backdrop) {
980 this.$backdrop.removeClass('in')
982 $.support.transition && this.$element.hasClass('fade')?
983 this.$backdrop.one($.support.transition.end, callback) :
986 } else if (callback) {
993 /* MODAL PLUGIN DEFINITION
994 * ======================= */
998 $.fn.modal = function (option) {
999 return this.each(function () {
1001 , data = $this.data('modal')
1002 , options = $.extend({}, $.fn.modal.defaults, $this.data(), typeof option == 'object' && option)
1003 if (!data) $this.data('modal', (data = new Modal(this, options)))
1004 if (typeof option == 'string') data[option]()
1005 else if (options.show) data.show()
1009 $.fn.modal.defaults = {
1015 $.fn.modal.Constructor = Modal
1018 /* MODAL NO CONFLICT
1019 * ================= */
1021 $.fn.modal.noConflict = function () {
1030 $(document).on('click.modal.data-api', '[data-toggle="modal"]', function (e) {
1032 , href = $this.attr('href')
1033 , $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
1034 , option = $target.data('modal') ? 'toggle' : $.extend({ remote:!/#/.test(href) && href }, $target.data(), $this.data())
1040 .one('hide', function () {
1046 /* ===========================================================
1047 * bootstrap-tooltip.js v2.3.1
1048 * http://twitter.github.com/bootstrap/javascript.html#tooltips
1049 * Inspired by the original jQuery.tipsy by Jason Frame
1050 * ===========================================================
1051 * Copyright 2012 Twitter, Inc.
1053 * Licensed under the Apache License, Version 2.0 (the "License");
1054 * you may not use this file except in compliance with the License.
1055 * You may obtain a copy of the License at
1057 * http://www.apache.org/licenses/LICENSE-2.0
1059 * Unless required by applicable law or agreed to in writing, software
1060 * distributed under the License is distributed on an "AS IS" BASIS,
1061 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1062 * See the License for the specific language governing permissions and
1063 * limitations under the License.
1064 * ========================================================== */
1069 "use strict"; // jshint ;_;
1072 /* TOOLTIP PUBLIC CLASS DEFINITION
1073 * =============================== */
1075 var Tooltip = function (element, options) {
1076 this.init('tooltip', element, options)
1079 Tooltip.prototype = {
1081 constructor: Tooltip
1083 , init: function (type, element, options) {
1091 this.$element = $(element)
1092 this.options = this.getOptions(options)
1095 triggers = this.options.trigger.split(' ')
1097 for (i = triggers.length; i--;) {
1098 trigger = triggers[i]
1099 if (trigger == 'click') {
1100 this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
1101 } else if (trigger != 'manual') {
1102 eventIn = trigger == 'hover' ? 'mouseenter' : 'focus'
1103 eventOut = trigger == 'hover' ? 'mouseleave' : 'blur'
1104 this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
1105 this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
1109 this.options.selector ?
1110 (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
1114 , getOptions: function (options) {
1115 options = $.extend({}, $.fn[this.type].defaults, this.$element.data(), options)
1117 if (options.delay && typeof options.delay == 'number') {
1120 , hide: options.delay
1127 , enter: function (e) {
1128 var defaults = $.fn[this.type].defaults
1132 this._options && $.each(this._options, function (key, value) {
1133 if (defaults[key] != value) options[key] = value
1136 self = $(e.currentTarget)[this.type](options).data(this.type)
1138 if (!self.options.delay || !self.options.delay.show) return self.show()
1140 clearTimeout(this.timeout)
1141 self.hoverState = 'in'
1142 this.timeout = setTimeout(function() {
1143 if (self.hoverState == 'in') self.show()
1144 }, self.options.delay.show)
1147 , leave: function (e) {
1148 var self = $(e.currentTarget)[this.type](this._options).data(this.type)
1150 if (this.timeout) clearTimeout(this.timeout)
1151 if (!self.options.delay || !self.options.delay.hide) return self.hide()
1153 self.hoverState = 'out'
1154 this.timeout = setTimeout(function() {
1155 if (self.hoverState == 'out') self.hide()
1156 }, self.options.delay.hide)
1159 , show: function () {
1166 , e = $.Event('show')
1168 if (this.hasContent() && this.enabled) {
1169 this.$element.trigger(e)
1170 if (e.isDefaultPrevented()) return
1174 if (this.options.animation) {
1175 $tip.addClass('fade')
1178 placement = typeof this.options.placement == 'function' ?
1179 this.options.placement.call(this, $tip[0], this.$element[0]) :
1180 this.options.placement
1184 .css({ top: 0, left: 0, display: 'block' })
1186 this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
1188 pos = this.getPosition()
1190 actualWidth = $tip[0].offsetWidth
1191 actualHeight = $tip[0].offsetHeight
1193 switch (placement) {
1195 tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
1198 tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
1201 tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
1204 tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
1208 this.applyPlacement(tp, placement)
1209 this.$element.trigger('shown')
1213 , applyPlacement: function(offset, placement){
1214 var $tip = this.tip()
1215 , width = $tip[0].offsetWidth
1216 , height = $tip[0].offsetHeight
1224 .addClass(placement)
1227 actualWidth = $tip[0].offsetWidth
1228 actualHeight = $tip[0].offsetHeight
1230 if (placement == 'top' && actualHeight != height) {
1231 offset.top = offset.top + height - actualHeight
1235 if (placement == 'bottom' || placement == 'top') {
1238 if (offset.left < 0){
1239 delta = offset.left * -2
1242 actualWidth = $tip[0].offsetWidth
1243 actualHeight = $tip[0].offsetHeight
1246 this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
1248 this.replaceArrow(actualHeight - height, actualHeight, 'top')
1251 if (replace) $tip.offset(offset)
1254 , replaceArrow: function(delta, dimension, position){
1257 .css(position, delta ? (50 * (1 - delta / dimension) + "%") : '')
1260 , setContent: function () {
1261 var $tip = this.tip()
1262 , title = this.getTitle()
1264 $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
1265 $tip.removeClass('fade in top bottom left right')
1268 , hide: function () {
1271 , e = $.Event('hide')
1273 this.$element.trigger(e)
1274 if (e.isDefaultPrevented()) return
1276 $tip.removeClass('in')
1278 function removeWithAnimation() {
1279 var timeout = setTimeout(function () {
1280 $tip.off($.support.transition.end).detach()
1283 $tip.one($.support.transition.end, function () {
1284 clearTimeout(timeout)
1289 $.support.transition && this.$tip.hasClass('fade') ?
1290 removeWithAnimation() :
1293 this.$element.trigger('hidden')
1298 , fixTitle: function () {
1299 var $e = this.$element
1300 if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
1301 $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
1305 , hasContent: function () {
1306 return this.getTitle()
1309 , getPosition: function () {
1310 var el = this.$element[0]
1311 return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
1312 width: el.offsetWidth
1313 , height: el.offsetHeight
1314 }, this.$element.offset())
1317 , getTitle: function () {
1319 , $e = this.$element
1322 title = $e.attr('data-original-title')
1323 || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
1328 , tip: function () {
1329 return this.$tip = this.$tip || $(this.options.template)
1332 , arrow: function(){
1333 return this.$arrow = this.$arrow || this.tip().find(".tooltip-arrow")
1336 , validate: function () {
1337 if (!this.$element[0].parentNode) {
1339 this.$element = null
1344 , enable: function () {
1348 , disable: function () {
1349 this.enabled = false
1352 , toggleEnabled: function () {
1353 this.enabled = !this.enabled
1356 , toggle: function (e) {
1357 var self = e ? $(e.currentTarget)[this.type](this._options).data(this.type) : this
1358 self.tip().hasClass('in') ? self.hide() : self.show()
1361 , destroy: function () {
1362 this.hide().$element.off('.' + this.type).removeData(this.type)
1368 /* TOOLTIP PLUGIN DEFINITION
1369 * ========================= */
1371 var old = $.fn.tooltip
1373 $.fn.tooltip = function ( option ) {
1374 return this.each(function () {
1376 , data = $this.data('tooltip')
1377 , options = typeof option == 'object' && option
1378 if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))
1379 if (typeof option == 'string') data[option]()
1383 $.fn.tooltip.Constructor = Tooltip
1385 $.fn.tooltip.defaults = {
1389 , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
1390 , trigger: 'hover focus'
1398 /* TOOLTIP NO CONFLICT
1399 * =================== */
1401 $.fn.tooltip.noConflict = function () {
1407 /* ===========================================================
1408 * bootstrap-popover.js v2.3.1
1409 * http://twitter.github.com/bootstrap/javascript.html#popovers
1410 * ===========================================================
1411 * Copyright 2012 Twitter, Inc.
1413 * Licensed under the Apache License, Version 2.0 (the "License");
1414 * you may not use this file except in compliance with the License.
1415 * You may obtain a copy of the License at
1417 * http://www.apache.org/licenses/LICENSE-2.0
1419 * Unless required by applicable law or agreed to in writing, software
1420 * distributed under the License is distributed on an "AS IS" BASIS,
1421 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1422 * See the License for the specific language governing permissions and
1423 * limitations under the License.
1424 * =========================================================== */
1429 "use strict"; // jshint ;_;
1432 /* POPOVER PUBLIC CLASS DEFINITION
1433 * =============================== */
1435 var Popover = function (element, options) {
1436 this.init('popover', element, options)
1440 /* NOTE: POPOVER EXTENDS BOOTSTRAP-TOOLTIP.js
1441 ========================================== */
1443 Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype, {
1445 constructor: Popover
1447 , setContent: function () {
1448 var $tip = this.tip()
1449 , title = this.getTitle()
1450 , content = this.getContent()
1452 $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
1453 $tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content)
1455 $tip.removeClass('fade top bottom left right in')
1458 , hasContent: function () {
1459 return this.getTitle() || this.getContent()
1462 , getContent: function () {
1464 , $e = this.$element
1467 content = (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
1468 || $e.attr('data-content')
1473 , tip: function () {
1475 this.$tip = $(this.options.template)
1480 , destroy: function () {
1481 this.hide().$element.off('.' + this.type).removeData(this.type)
1487 /* POPOVER PLUGIN DEFINITION
1488 * ======================= */
1490 var old = $.fn.popover
1492 $.fn.popover = function (option) {
1493 return this.each(function () {
1495 , data = $this.data('popover')
1496 , options = typeof option == 'object' && option
1497 if (!data) $this.data('popover', (data = new Popover(this, options)))
1498 if (typeof option == 'string') data[option]()
1502 $.fn.popover.Constructor = Popover
1504 $.fn.popover.defaults = $.extend({} , $.fn.tooltip.defaults, {
1508 , template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
1512 /* POPOVER NO CONFLICT
1513 * =================== */
1515 $.fn.popover.noConflict = function () {
1521 /* =============================================================
1522 * bootstrap-scrollspy.js v2.3.1
1523 * http://twitter.github.com/bootstrap/javascript.html#scrollspy
1524 * =============================================================
1525 * Copyright 2012 Twitter, Inc.
1527 * Licensed under the Apache License, Version 2.0 (the "License");
1528 * you may not use this file except in compliance with the License.
1529 * You may obtain a copy of the License at
1531 * http://www.apache.org/licenses/LICENSE-2.0
1533 * Unless required by applicable law or agreed to in writing, software
1534 * distributed under the License is distributed on an "AS IS" BASIS,
1535 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1536 * See the License for the specific language governing permissions and
1537 * limitations under the License.
1538 * ============================================================== */
1543 "use strict"; // jshint ;_;
1546 /* SCROLLSPY CLASS DEFINITION
1547 * ========================== */
1549 function ScrollSpy(element, options) {
1550 var process = $.proxy(this.process, this)
1551 , $element = $(element).is('body') ? $(window) : $(element)
1553 this.options = $.extend({}, $.fn.scrollspy.defaults, options)
1554 this.$scrollElement = $element.on('scroll.scroll-spy.data-api', process)
1555 this.selector = (this.options.target
1556 || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
1557 || '') + ' .nav li > a'
1558 this.$body = $('body')
1563 ScrollSpy.prototype = {
1565 constructor: ScrollSpy
1567 , refresh: function () {
1571 this.offsets = $([])
1572 this.targets = $([])
1574 $targets = this.$body
1575 .find(this.selector)
1578 , href = $el.data('target') || $el.attr('href')
1579 , $href = /^#\w/.test(href) && $(href)
1582 && [[ $href.position().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]] ) || null
1584 .sort(function (a, b) { return a[0] - b[0] })
1586 self.offsets.push(this[0])
1587 self.targets.push(this[1])
1591 , process: function () {
1592 var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
1593 , scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
1594 , maxScroll = scrollHeight - this.$scrollElement.height()
1595 , offsets = this.offsets
1596 , targets = this.targets
1597 , activeTarget = this.activeTarget
1600 if (scrollTop >= maxScroll) {
1601 return activeTarget != (i = targets.last()[0])
1602 && this.activate ( i )
1605 for (i = offsets.length; i--;) {
1606 activeTarget != targets[i]
1607 && scrollTop >= offsets[i]
1608 && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
1609 && this.activate( targets[i] )
1613 , activate: function (target) {
1617 this.activeTarget = target
1621 .removeClass('active')
1623 selector = this.selector
1624 + '[data-target="' + target + '"],'
1625 + this.selector + '[href="' + target + '"]'
1627 active = $(selector)
1631 if (active.parent('.dropdown-menu').length) {
1632 active = active.closest('li.dropdown').addClass('active')
1635 active.trigger('activate')
1641 /* SCROLLSPY PLUGIN DEFINITION
1642 * =========================== */
1644 var old = $.fn.scrollspy
1646 $.fn.scrollspy = function (option) {
1647 return this.each(function () {
1649 , data = $this.data('scrollspy')
1650 , options = typeof option == 'object' && option
1651 if (!data) $this.data('scrollspy', (data = new ScrollSpy(this, options)))
1652 if (typeof option == 'string') data[option]()
1656 $.fn.scrollspy.Constructor = ScrollSpy
1658 $.fn.scrollspy.defaults = {
1663 /* SCROLLSPY NO CONFLICT
1664 * ===================== */
1666 $.fn.scrollspy.noConflict = function () {
1667 $.fn.scrollspy = old
1672 /* SCROLLSPY DATA-API
1673 * ================== */
1675 $(window).on('load', function () {
1676 $('[data-spy="scroll"]').each(function () {
1678 $spy.scrollspy($spy.data())
1682 }(window.jQuery);/* ========================================================
1683 * bootstrap-tab.js v2.3.1
1684 * http://twitter.github.com/bootstrap/javascript.html#tabs
1685 * ========================================================
1686 * Copyright 2012 Twitter, Inc.
1688 * Licensed under the Apache License, Version 2.0 (the "License");
1689 * you may not use this file except in compliance with the License.
1690 * You may obtain a copy of the License at
1692 * http://www.apache.org/licenses/LICENSE-2.0
1694 * Unless required by applicable law or agreed to in writing, software
1695 * distributed under the License is distributed on an "AS IS" BASIS,
1696 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1697 * See the License for the specific language governing permissions and
1698 * limitations under the License.
1699 * ======================================================== */
1704 "use strict"; // jshint ;_;
1707 /* TAB CLASS DEFINITION
1708 * ==================== */
1710 var Tab = function (element) {
1711 this.element = $(element)
1718 , show: function () {
1719 var $this = this.element
1720 , $ul = $this.closest('ul:not(.dropdown-menu)')
1721 , selector = $this.attr('data-target')
1727 selector = $this.attr('href')
1728 selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
1731 if ( $this.parent('li').hasClass('active') ) return
1733 previous = $ul.find('.active:last a')[0]
1735 e = $.Event('show', {
1736 relatedTarget: previous
1741 if (e.isDefaultPrevented()) return
1743 $target = $(selector)
1745 this.activate($this.parent('li'), $ul)
1746 this.activate($target, $target.parent(), function () {
1749 , relatedTarget: previous
1754 , activate: function ( element, container, callback) {
1755 var $active = container.find('> .active')
1756 , transition = callback
1757 && $.support.transition
1758 && $active.hasClass('fade')
1762 .removeClass('active')
1763 .find('> .dropdown-menu > .active')
1764 .removeClass('active')
1766 element.addClass('active')
1769 element[0].offsetWidth // reflow for transition
1770 element.addClass('in')
1772 element.removeClass('fade')
1775 if ( element.parent('.dropdown-menu') ) {
1776 element.closest('li.dropdown').addClass('active')
1779 callback && callback()
1783 $active.one($.support.transition.end, next) :
1786 $active.removeClass('in')
1791 /* TAB PLUGIN DEFINITION
1792 * ===================== */
1796 $.fn.tab = function ( option ) {
1797 return this.each(function () {
1799 , data = $this.data('tab')
1800 if (!data) $this.data('tab', (data = new Tab(this)))
1801 if (typeof option == 'string') data[option]()
1805 $.fn.tab.Constructor = Tab
1809 * =============== */
1811 $.fn.tab.noConflict = function () {
1820 $(document).on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
1825 }(window.jQuery);/* =============================================================
1826 * bootstrap-typeahead.js v2.3.1
1827 * http://twitter.github.com/bootstrap/javascript.html#typeahead
1828 * =============================================================
1829 * Copyright 2012 Twitter, Inc.
1831 * Licensed under the Apache License, Version 2.0 (the "License");
1832 * you may not use this file except in compliance with the License.
1833 * You may obtain a copy of the License at
1835 * http://www.apache.org/licenses/LICENSE-2.0
1837 * Unless required by applicable law or agreed to in writing, software
1838 * distributed under the License is distributed on an "AS IS" BASIS,
1839 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1840 * See the License for the specific language governing permissions and
1841 * limitations under the License.
1842 * ============================================================ */
1847 "use strict"; // jshint ;_;
1850 /* TYPEAHEAD PUBLIC CLASS DEFINITION
1851 * ================================= */
1853 var Typeahead = function (element, options) {
1854 this.$element = $(element)
1855 this.options = $.extend({}, $.fn.typeahead.defaults, options)
1856 this.matcher = this.options.matcher || this.matcher
1857 this.sorter = this.options.sorter || this.sorter
1858 this.highlighter = this.options.highlighter || this.highlighter
1859 this.updater = this.options.updater || this.updater
1860 this.source = this.options.source
1861 this.$menu = $(this.options.menu)
1866 Typeahead.prototype = {
1868 constructor: Typeahead
1870 , select: function () {
1871 var val = this.$menu.find('.active').attr('data-value')
1873 .val(this.updater(val))
1878 , updater: function (item) {
1882 , show: function () {
1883 var pos = $.extend({}, this.$element.position(), {
1884 height: this.$element[0].offsetHeight
1888 .insertAfter(this.$element)
1890 top: pos.top + pos.height
1899 , hide: function () {
1905 , lookup: function (event) {
1908 this.query = this.$element.val()
1910 if (!this.query || this.query.length < this.options.minLength) {
1911 return this.shown ? this.hide() : this
1914 items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
1916 return items ? this.process(items) : this
1919 , process: function (items) {
1922 items = $.grep(items, function (item) {
1923 return that.matcher(item)
1926 items = this.sorter(items)
1928 if (!items.length) {
1929 return this.shown ? this.hide() : this
1932 return this.render(items.slice(0, this.options.items)).show()
1935 , matcher: function (item) {
1936 return ~item.toLowerCase().indexOf(this.query.toLowerCase())
1939 , sorter: function (items) {
1941 , caseSensitive = []
1942 , caseInsensitive = []
1945 while (item = items.shift()) {
1946 if (!item.toLowerCase().indexOf(this.query.toLowerCase())) beginswith.push(item)
1947 else if (~item.indexOf(this.query)) caseSensitive.push(item)
1948 else caseInsensitive.push(item)
1951 return beginswith.concat(caseSensitive, caseInsensitive)
1954 , highlighter: function (item) {
1955 var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
1956 return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
1957 return '<strong>' + match + '</strong>'
1961 , render: function (items) {
1964 items = $(items).map(function (i, item) {
1965 i = $(that.options.item).attr('data-value', item)
1966 i.find('a').html(that.highlighter(item))
1970 items.first().addClass('active')
1971 this.$menu.html(items)
1975 , next: function (event) {
1976 var active = this.$menu.find('.active').removeClass('active')
1977 , next = active.next()
1980 next = $(this.$menu.find('li')[0])
1983 next.addClass('active')
1986 , prev: function (event) {
1987 var active = this.$menu.find('.active').removeClass('active')
1988 , prev = active.prev()
1991 prev = this.$menu.find('li').last()
1994 prev.addClass('active')
1997 , listen: function () {
1999 .on('focus', $.proxy(this.focus, this))
2000 .on('blur', $.proxy(this.blur, this))
2001 .on('keypress', $.proxy(this.keypress, this))
2002 .on('keyup', $.proxy(this.keyup, this))
2004 if (this.eventSupported('keydown')) {
2005 this.$element.on('keydown', $.proxy(this.keydown, this))
2009 .on('click', $.proxy(this.click, this))
2010 .on('mouseenter', 'li', $.proxy(this.mouseenter, this))
2011 .on('mouseleave', 'li', $.proxy(this.mouseleave, this))
2014 , eventSupported: function(eventName) {
2015 var isSupported = eventName in this.$element
2017 this.$element.setAttribute(eventName, 'return;')
2018 isSupported = typeof this.$element[eventName] === 'function'
2023 , move: function (e) {
2024 if (!this.shown) return
2033 case 38: // up arrow
2038 case 40: // down arrow
2047 , keydown: function (e) {
2048 this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
2052 , keypress: function (e) {
2053 if (this.suppressKeyPressRepeat) return
2057 , keyup: function (e) {
2059 case 40: // down arrow
2060 case 38: // up arrow
2068 if (!this.shown) return
2073 if (!this.shown) return
2085 , focus: function (e) {
2089 , blur: function (e) {
2090 this.focused = false
2091 if (!this.mousedover && this.shown) this.hide()
2094 , click: function (e) {
2098 this.$element.focus()
2101 , mouseenter: function (e) {
2102 this.mousedover = true
2103 this.$menu.find('.active').removeClass('active')
2104 $(e.currentTarget).addClass('active')
2107 , mouseleave: function (e) {
2108 this.mousedover = false
2109 if (!this.focused && this.shown) this.hide()
2115 /* TYPEAHEAD PLUGIN DEFINITION
2116 * =========================== */
2118 var old = $.fn.typeahead
2120 $.fn.typeahead = function (option) {
2121 return this.each(function () {
2123 , data = $this.data('typeahead')
2124 , options = typeof option == 'object' && option
2125 if (!data) $this.data('typeahead', (data = new Typeahead(this, options)))
2126 if (typeof option == 'string') data[option]()
2130 $.fn.typeahead.defaults = {
2133 , menu: '<ul class="typeahead dropdown-menu"></ul>'
2134 , item: '<li><a href="#"></a></li>'
2138 $.fn.typeahead.Constructor = Typeahead
2141 /* TYPEAHEAD NO CONFLICT
2142 * =================== */
2144 $.fn.typeahead.noConflict = function () {
2145 $.fn.typeahead = old
2150 /* TYPEAHEAD DATA-API
2151 * ================== */
2153 $(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
2155 if ($this.data('typeahead')) return
2156 $this.typeahead($this.data())
2160 /* ==========================================================
2161 * bootstrap-affix.js v2.3.1
2162 * http://twitter.github.com/bootstrap/javascript.html#affix
2163 * ==========================================================
2164 * Copyright 2012 Twitter, Inc.
2166 * Licensed under the Apache License, Version 2.0 (the "License");
2167 * you may not use this file except in compliance with the License.
2168 * You may obtain a copy of the License at
2170 * http://www.apache.org/licenses/LICENSE-2.0
2172 * Unless required by applicable law or agreed to in writing, software
2173 * distributed under the License is distributed on an "AS IS" BASIS,
2174 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2175 * See the License for the specific language governing permissions and
2176 * limitations under the License.
2177 * ========================================================== */
2182 "use strict"; // jshint ;_;
2185 /* AFFIX CLASS DEFINITION
2186 * ====================== */
2188 var Affix = function (element, options) {
2189 this.options = $.extend({}, $.fn.affix.defaults, options)
2190 this.$window = $(window)
2191 .on('scroll.affix.data-api', $.proxy(this.checkPosition, this))
2192 .on('click.affix.data-api', $.proxy(function () { setTimeout($.proxy(this.checkPosition, this), 1) }, this))
2193 this.$element = $(element)
2194 this.checkPosition()
2197 Affix.prototype.checkPosition = function () {
2198 if (!this.$element.is(':visible')) return
2200 var scrollHeight = $(document).height()
2201 , scrollTop = this.$window.scrollTop()
2202 , position = this.$element.offset()
2203 , offset = this.options.offset
2204 , offsetBottom = offset.bottom
2205 , offsetTop = offset.top
2206 , reset = 'affix affix-top affix-bottom'
2209 if (typeof offset != 'object') offsetBottom = offsetTop = offset
2210 if (typeof offsetTop == 'function') offsetTop = offset.top()
2211 if (typeof offsetBottom == 'function') offsetBottom = offset.bottom()
2213 affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ?
2214 false : offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ?
2215 'bottom' : offsetTop != null && scrollTop <= offsetTop ?
2218 if (this.affixed === affix) return
2220 this.affixed = affix
2221 this.unpin = affix == 'bottom' ? position.top - scrollTop : null
2223 this.$element.removeClass(reset).addClass('affix' + (affix ? '-' + affix : ''))
2227 /* AFFIX PLUGIN DEFINITION
2228 * ======================= */
2230 var old = $.fn.affix
2232 $.fn.affix = function (option) {
2233 return this.each(function () {
2235 , data = $this.data('affix')
2236 , options = typeof option == 'object' && option
2237 if (!data) $this.data('affix', (data = new Affix(this, options)))
2238 if (typeof option == 'string') data[option]()
2242 $.fn.affix.Constructor = Affix
2244 $.fn.affix.defaults = {
2249 /* AFFIX NO CONFLICT
2250 * ================= */
2252 $.fn.affix.noConflict = function () {
2261 $(window).on('load', function () {
2262 $('[data-spy="affix"]').each(function () {
2264 , data = $spy.data()
2266 data.offset = data.offset || {}
2268 data.offsetBottom && (data.offset.bottom = data.offsetBottom)
2269 data.offsetTop && (data.offset.top = data.offsetTop)