/*! * bootstrap v3.3.7 (http://getbootstrap.com) * copyright 2011-2016 twitter, inc. * licensed under the mit license */ if (typeof jquery === 'undefined') { throw new error('bootstrap\'s javascript requires jquery') } +function ($) { 'use strict'; var version = $.fn.jquery.split(' ')[0].split('.'); if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 3)) { throw new error('bootstrap\'s javascript requires jquery version 1.9.1 or higher, but lower than version 4') } }(jquery); /* ======================================================================== * bootstrap: transition.js v3.3.7 * http://getbootstrap.com/javascript/#transitions * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // css transition support (shoutout: http://www.modernizr.com/) // ============================================================ function transitionend() { var el = document.createelement('bootstrap'); var transendeventnames = { webkittransition : 'webkittransitionend', moztransition : 'transitionend', otransition : 'otransitionend otransitionend', transition : 'transitionend' }; for (var name in transendeventnames) { if (el.style[name] !== undefined) { return { end: transendeventnames[name] } } } return false // explicit for ie8 ( ._.) } // http://blog.alexmaccaw.com/css-transitions $.fn.emulatetransitionend = function (duration) { var called = false; var $el = this; $(this).one('bstransitionend', function () { called = true }); var callback = function () { if (!called) $($el).trigger($.support.transition.end) }; settimeout(callback, duration); return this }; $(function () { $.support.transition = transitionend(); if (!$.support.transition) return; $.event.special.bstransitionend = { bindtype: $.support.transition.end, delegatetype: $.support.transition.end, handle: function (e) { if ($(e.target).is(this)) return e.handleobj.handler.apply(this, arguments) } } }) }(jquery); /* ======================================================================== * bootstrap: alert.js v3.3.7 * http://getbootstrap.com/javascript/#alerts * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // alert class definition // ====================== var dismiss = '[data-dismiss="alert"]'; var alert = function (el) { $(el).on('click', dismiss, this.close) }; alert.version = '3.3.7'; alert.transition_duration = 150; alert.prototype.close = function (e) { var $this = $(this); var selector = $this.attr('data-target'); if (!selector) { selector = $this.attr('href'); selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = $(selector === '#' ? [] : selector); if (e) e.preventdefault(); if (!$parent.length) { $parent = $this.closest('.alert') } $parent.trigger(e = $.event('close.bs.alert')); if (e.isdefaultprevented()) return; $parent.removeclass('in'); function removeelement() { // detach from parent, fire event then clean up data $parent.detach().trigger('closed.bs.alert').remove() } $.support.transition && $parent.hasclass('fade') ? $parent .one('bstransitionend', removeelement) .emulatetransitionend(alert.transition_duration) : removeelement() }; // alert plugin definition // ======================= function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.alert'); if (!data) $this.data('bs.alert', (data = new alert(this))); if (typeof option == 'string') data[option].call($this) }) } var old = $.fn.alert; $.fn.alert = plugin; $.fn.alert.constructor = alert; // alert no conflict // ================= $.fn.alert.noconflict = function () { $.fn.alert = old; return this }; // alert data-api // ============== $(document).on('click.bs.alert.data-api', dismiss, alert.prototype.close) }(jquery); /* ======================================================================== * bootstrap: button.js v3.3.7 * http://getbootstrap.com/javascript/#buttons * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // button public class definition // ============================== var button = function (element, options) { this.$element = $(element); this.options = $.extend({}, button.defaults, options); this.isloading = false }; button.version = '3.3.7'; button.defaults = { loadingtext: 'loading...' }; button.prototype.setstate = function (state) { var d = 'disabled'; var $el = this.$element; var val = $el.is('input') ? 'val' : 'html'; var data = $el.data(); state += 'text'; if (data.resettext == null) $el.data('resettext', $el[val]()); // push to event loop to allow forms to submit settimeout($.proxy(function () { $el[val](data[state] == null ? this.options[state] : data[state]); if (state == 'loadingtext') { this.isloading = true; $el.addclass(d).attr(d, d).prop(d, true) } else if (this.isloading) { this.isloading = false; $el.removeclass(d).removeattr(d).prop(d, false) } }, this), 0) }; button.prototype.toggle = function () { var changed = true; var $parent = this.$element.closest('[data-toggle="buttons"]'); if ($parent.length) { var $input = this.$element.find('input'); if ($input.prop('type') == 'radio') { if ($input.prop('checked')) changed = false; $parent.find('.active').removeclass('active'); this.$element.addclass('active') } else if ($input.prop('type') == 'checkbox') { if (($input.prop('checked')) !== this.$element.hasclass('active')) changed = false; this.$element.toggleclass('active') } $input.prop('checked', this.$element.hasclass('active')); if (changed) $input.trigger('change') } else { this.$element.attr('aria-pressed', !this.$element.hasclass('active')); this.$element.toggleclass('active') } }; // button plugin definition // ======================== function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.button'); var options = typeof option == 'object' && option; if (!data) $this.data('bs.button', (data = new button(this, options))); if (option == 'toggle') data.toggle(); else if (option) data.setstate(option) }) } var old = $.fn.button; $.fn.button = plugin; $.fn.button.constructor = button; // button no conflict // ================== $.fn.button.noconflict = function () { $.fn.button = old; return this }; // button data-api // =============== $(document) .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { var $btn = $(e.target).closest('.btn'); plugin.call($btn, 'toggle'); if (!($(e.target).is('input[type="radio"], input[type="checkbox"]'))) { // prevent double click on radios, and the double selections (so cancellation) on checkboxes e.preventdefault(); // the target component still receive the focus if ($btn.is('input,button')) $btn.trigger('focus'); else $btn.find('input:visible,button:visible').first().trigger('focus') } }) .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { $(e.target).closest('.btn').toggleclass('focus', /^focus(in)?$/.test(e.type)) }) }(jquery); /* ======================================================================== * bootstrap: carousel.js v3.3.7 * http://getbootstrap.com/javascript/#carousel * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // carousel class definition // ========================= var carousel = function (element, options) { this.$element = $(element); this.$indicators = this.$element.find('.carousel-indicators'); this.options = options; this.paused = null; this.sliding = null; this.interval = null; this.$active = null; this.$items = null; this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)); this.options.pause == 'hover' && !('ontouchstart' in document.documentelement) && this.$element .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) }; carousel.version = '3.3.7'; carousel.transition_duration = 600; carousel.defaults = { interval: 5000, pause: 'hover', wrap: true, keyboard: true }; carousel.prototype.keydown = function (e) { if (/input|textarea/i.test(e.target.tagname)) return; switch (e.which) { case 37: this.prev(); break; case 39: this.next(); break; default: return } e.preventdefault() }; carousel.prototype.cycle = function (e) { e || (this.paused = false); this.interval && clearinterval(this.interval); this.options.interval && !this.paused && (this.interval = setinterval($.proxy(this.next, this), this.options.interval)); return this }; carousel.prototype.getitemindex = function (item) { this.$items = item.parent().children('.item'); return this.$items.index(item || this.$active) }; carousel.prototype.getitemfordirection = function (direction, active) { var activeindex = this.getitemindex(active); var willwrap = (direction == 'prev' && activeindex === 0) || (direction == 'next' && activeindex == (this.$items.length - 1)); if (willwrap && !this.options.wrap) return active; var delta = direction == 'prev' ? -1 : 1; var itemindex = (activeindex + delta) % this.$items.length; return this.$items.eq(itemindex) }; carousel.prototype.to = function (pos) { var that = this; var activeindex = this.getitemindex(this.$active = this.$element.find('.item.active')); if (pos > (this.$items.length - 1) || pos < 0) return; if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }); // yes, "slid" if (activeindex == pos) return this.pause().cycle(); return this.slide(pos > activeindex ? 'next' : 'prev', this.$items.eq(pos)) }; carousel.prototype.pause = function (e) { e || (this.paused = true); if (this.$element.find('.next, .prev').length && $.support.transition) { this.$element.trigger($.support.transition.end); this.cycle(true) } this.interval = clearinterval(this.interval); return this }; carousel.prototype.next = function () { if (this.sliding) return; return this.slide('next') }; carousel.prototype.prev = function () { if (this.sliding) return; return this.slide('prev') }; carousel.prototype.slide = function (type, next) { var $active = this.$element.find('.item.active'); var $next = next || this.getitemfordirection(type, $active); var iscycling = this.interval; var direction = type == 'next' ? 'left' : 'right'; var that = this; if ($next.hasclass('active')) return (this.sliding = false); var relatedtarget = $next[0]; var slideevent = $.event('slide.bs.carousel', { relatedtarget: relatedtarget, direction: direction }); this.$element.trigger(slideevent); if (slideevent.isdefaultprevented()) return; this.sliding = true; iscycling && this.pause(); if (this.$indicators.length) { this.$indicators.find('.active').removeclass('active'); var $nextindicator = $(this.$indicators.children()[this.getitemindex($next)]); $nextindicator && $nextindicator.addclass('active') } var slidevent = $.event('slid.bs.carousel', { relatedtarget: relatedtarget, direction: direction }); // yes, "slid" if ($.support.transition && this.$element.hasclass('slide')) { $next.addclass(type); $next[0].offsetwidth; // force reflow $active.addclass(direction); $next.addclass(direction); $active .one('bstransitionend', function () { $next.removeclass([type, direction].join(' ')).addclass('active'); $active.removeclass(['active', direction].join(' ')); that.sliding = false; settimeout(function () { that.$element.trigger(slidevent) }, 0) }) .emulatetransitionend(carousel.transition_duration) } else { $active.removeclass('active'); $next.addclass('active'); this.sliding = false; this.$element.trigger(slidevent) } iscycling && this.cycle(); return this }; // carousel plugin definition // ========================== function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.carousel'); var options = $.extend({}, carousel.defaults, $this.data(), typeof option == 'object' && option); var action = typeof option == 'string' ? option : options.slide; if (!data) $this.data('bs.carousel', (data = new carousel(this, options))); if (typeof option == 'number') data.to(option); else if (action) data[action](); else if (options.interval) data.pause().cycle() }) } var old = $.fn.carousel; $.fn.carousel = plugin; $.fn.carousel.constructor = carousel; // carousel no conflict // ==================== $.fn.carousel.noconflict = function () { $.fn.carousel = old; return this }; // carousel data-api // ================= var clickhandler = function (e) { var href; var $this = $(this); var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')); // strip for ie7 if (!$target.hasclass('carousel')) return; var options = $.extend({}, $target.data(), $this.data()); var slideindex = $this.attr('data-slide-to'); if (slideindex) options.interval = false; plugin.call($target, options); if (slideindex) { $target.data('bs.carousel').to(slideindex) } e.preventdefault() }; $(document) .on('click.bs.carousel.data-api', '[data-slide]', clickhandler) .on('click.bs.carousel.data-api', '[data-slide-to]', clickhandler); $(window).on('load', function () { $('[data-ride="carousel"]').each(function () { var $carousel = $(this); plugin.call($carousel, $carousel.data()) }) }) }(jquery); /* ======================================================================== * bootstrap: collapse.js v3.3.7 * http://getbootstrap.com/javascript/#collapse * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ /* jshint latedef: false */ +function ($) { 'use strict'; // collapse public class definition // ================================ var collapse = function (element, options) { this.$element = $(element); this.options = $.extend({}, collapse.defaults, options); this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' + '[data-toggle="collapse"][data-target="#' + element.id + '"]'); this.transitioning = null; if (this.options.parent) { this.$parent = this.getparent() } else { this.addariaandcollapsedclass(this.$element, this.$trigger) } if (this.options.toggle) this.toggle() }; collapse.version = '3.3.7'; collapse.transition_duration = 350; collapse.defaults = { toggle: true }; collapse.prototype.dimension = function () { var haswidth = this.$element.hasclass('width'); return haswidth ? 'width' : 'height' }; collapse.prototype.show = function () { if (this.transitioning || this.$element.hasclass('in')) return; var activesdata; var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing'); if (actives && actives.length) { activesdata = actives.data('bs.collapse'); if (activesdata && activesdata.transitioning) return } var startevent = $.event('show.bs.collapse'); this.$element.trigger(startevent); if (startevent.isdefaultprevented()) return; if (actives && actives.length) { plugin.call(actives, 'hide'); activesdata || actives.data('bs.collapse', null) } var dimension = this.dimension(); this.$element .removeclass('collapse') .addclass('collapsing')[dimension](0) .attr('aria-expanded', true); this.$trigger .removeclass('collapsed') .attr('aria-expanded', true); this.transitioning = 1; var complete = function () { this.$element .removeclass('collapsing') .addclass('collapse in')[dimension](''); this.transitioning = 0; this.$element .trigger('shown.bs.collapse') }; if (!$.support.transition) return complete.call(this); var scrollsize = $.camelcase(['scroll', dimension].join('-')); this.$element .one('bstransitionend', $.proxy(complete, this)) .emulatetransitionend(collapse.transition_duration)[dimension](this.$element[0][scrollsize]) }; collapse.prototype.hide = function () { if (this.transitioning || !this.$element.hasclass('in')) return; var startevent = $.event('hide.bs.collapse'); this.$element.trigger(startevent); if (startevent.isdefaultprevented()) return; var dimension = this.dimension(); this.$element[dimension](this.$element[dimension]())[0].offsetheight; this.$element .addclass('collapsing') .removeclass('collapse in') .attr('aria-expanded', false); this.$trigger .addclass('collapsed') .attr('aria-expanded', false); this.transitioning = 1; var complete = function () { this.transitioning = 0; this.$element .removeclass('collapsing') .addclass('collapse') .trigger('hidden.bs.collapse') }; if (!$.support.transition) return complete.call(this); this.$element [dimension](0) .one('bstransitionend', $.proxy(complete, this)) .emulatetransitionend(collapse.transition_duration) }; collapse.prototype.toggle = function () { this[this.$element.hasclass('in') ? 'hide' : 'show']() }; collapse.prototype.getparent = function () { return $(this.options.parent) .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') .each($.proxy(function (i, element) { var $element = $(element); this.addariaandcollapsedclass(gettargetfromtrigger($element), $element) }, this)) .end() }; collapse.prototype.addariaandcollapsedclass = function ($element, $trigger) { var isopen = $element.hasclass('in'); $element.attr('aria-expanded', isopen); $trigger .toggleclass('collapsed', !isopen) .attr('aria-expanded', isopen) }; function gettargetfromtrigger($trigger) { var href; var target = $trigger.attr('data-target') || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, ''); // strip for ie7 return $(target) } // collapse plugin definition // ========================== function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.collapse'); var options = $.extend({}, collapse.defaults, $this.data(), typeof option == 'object' && option); if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false; if (!data) $this.data('bs.collapse', (data = new collapse(this, options))); if (typeof option == 'string') data[option]() }) } var old = $.fn.collapse; $.fn.collapse = plugin; $.fn.collapse.constructor = collapse; // collapse no conflict // ==================== $.fn.collapse.noconflict = function () { $.fn.collapse = old; return this }; // collapse data-api // ================= $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { var $this = $(this); if (!$this.attr('data-target')) e.preventdefault(); var $target = gettargetfromtrigger($this); var data = $target.data('bs.collapse'); var option = data ? 'toggle' : $this.data(); plugin.call($target, option) }) }(jquery); /* ======================================================================== * bootstrap: dropdown.js v3.3.7 * http://getbootstrap.com/javascript/#dropdowns * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // dropdown class definition // ========================= var backdrop = '.dropdown-backdrop'; var toggle = '[data-toggle="dropdown"]'; var dropdown = function (element) { $(element).on('click.bs.dropdown', this.toggle) }; dropdown.version = '3.3.7'; function getparent($this) { var selector = $this.attr('data-target'); if (!selector) { selector = $this.attr('href'); selector = selector && /#[a-za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = selector && $(selector); return $parent && $parent.length ? $parent : $this.parent() } function clearmenus(e) { if (e && e.which === 3) return; $(backdrop).remove(); $(toggle).each(function () { var $this = $(this); var $parent = getparent($this); var relatedtarget = { relatedtarget: this }; if (!$parent.hasclass('open')) return; if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagname) && $.contains($parent[0], e.target)) return; $parent.trigger(e = $.event('hide.bs.dropdown', relatedtarget)); if (e.isdefaultprevented()) return; $this.attr('aria-expanded', 'false'); $parent.removeclass('open').trigger($.event('hidden.bs.dropdown', relatedtarget)) }) } dropdown.prototype.toggle = function (e) { var $this = $(this); if ($this.is('.disabled, :disabled')) return; var $parent = getparent($this); var isactive = $parent.hasclass('open'); clearmenus(); if (!isactive) { if ('ontouchstart' in document.documentelement && !$parent.closest('.navbar-nav').length) { // if mobile we use a backdrop because click events don't delegate $(document.createelement('div')) .addclass('dropdown-backdrop') .insertafter($(this)) .on('click', clearmenus) } var relatedtarget = { relatedtarget: this }; $parent.trigger(e = $.event('show.bs.dropdown', relatedtarget)); if (e.isdefaultprevented()) return; $this .trigger('focus') .attr('aria-expanded', 'true'); $parent .toggleclass('open') .trigger($.event('shown.bs.dropdown', relatedtarget)) } return false }; dropdown.prototype.keydown = function (e) { if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagname)) return; var $this = $(this); e.preventdefault(); e.stoppropagation(); if ($this.is('.disabled, :disabled')) return; var $parent = getparent($this); var isactive = $parent.hasclass('open'); if (!isactive && e.which != 27 || isactive && e.which == 27) { if (e.which == 27) $parent.find(toggle).trigger('focus'); return $this.trigger('click') } var desc = ' li:not(.disabled):visible a'; var $items = $parent.find('.dropdown-menu' + desc); if (!$items.length) return; var index = $items.index(e.target); if (e.which == 38 && index > 0) index--; // up if (e.which == 40 && index < $items.length - 1) index++; // down if (!~index) index = 0; $items.eq(index).trigger('focus') }; // dropdown plugin definition // ========================== function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.dropdown'); if (!data) $this.data('bs.dropdown', (data = new dropdown(this))); if (typeof option == 'string') data[option].call($this) }) } var old = $.fn.dropdown; $.fn.dropdown = plugin; $.fn.dropdown.constructor = dropdown; // dropdown no conflict // ==================== $.fn.dropdown.noconflict = function () { $.fn.dropdown = old; return this }; // apply to standard dropdown elements // =================================== $(document) .on('click.bs.dropdown.data-api', clearmenus) .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stoppropagation() }) .on('click.bs.dropdown.data-api', toggle, dropdown.prototype.toggle) .on('keydown.bs.dropdown.data-api', toggle, dropdown.prototype.keydown) .on('keydown.bs.dropdown.data-api', '.dropdown-menu', dropdown.prototype.keydown) }(jquery); /* ======================================================================== * bootstrap: modal.js v3.3.7 * http://getbootstrap.com/javascript/#modals * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // modal class definition // ====================== var modal = function (element, options) { this.options = options; this.$body = $(document.body); this.$element = $(element); this.$dialog = this.$element.find('.modal-dialog'); this.$backdrop = null; this.isshown = null; this.originalbodypad = null; this.scrollbarwidth = 0; this.ignorebackdropclick = false; if (this.options.remote) { this.$element .find('.modal-content') .load(this.options.remote, $.proxy(function () { this.$element.trigger('loaded.bs.modal') }, this)) } }; modal.version = '3.3.7'; modal.transition_duration = 300; modal.backdrop_transition_duration = 150; modal.defaults = { backdrop: true, keyboard: true, show: true }; modal.prototype.toggle = function (_relatedtarget) { return this.isshown ? this.hide() : this.show(_relatedtarget) }; modal.prototype.show = function (_relatedtarget) { var that = this; var e = $.event('show.bs.modal', { relatedtarget: _relatedtarget }); this.$element.trigger(e); if (this.isshown || e.isdefaultprevented()) return; this.isshown = true; this.checkscrollbar(); this.setscrollbar(); this.$body.addclass('modal-open'); this.escape(); this.resize(); this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)); this.$dialog.on('mousedown.dismiss.bs.modal', function () { that.$element.one('mouseup.dismiss.bs.modal', function (e) { if ($(e.target).is(that.$element)) that.ignorebackdropclick = true }) }); this.backdrop(function () { var transition = $.support.transition && that.$element.hasclass('fade'); if (!that.$element.parent().length) { that.$element.appendto(that.$body) // don't move modals dom position } that.$element .show() .scrolltop(0); that.adjustdialog(); if (transition) { that.$element[0].offsetwidth // force reflow } that.$element.addclass('in'); that.enforcefocus(); var e = $.event('shown.bs.modal', { relatedtarget: _relatedtarget }); transition ? that.$dialog // wait for modal to slide in .one('bstransitionend', function () { that.$element.trigger('focus').trigger(e) }) .emulatetransitionend(modal.transition_duration) : that.$element.trigger('focus').trigger(e) }) }; modal.prototype.hide = function (e) { if (e) e.preventdefault(); e = $.event('hide.bs.modal'); this.$element.trigger(e); if (!this.isshown || e.isdefaultprevented()) return; this.isshown = false; this.escape(); this.resize(); $(document).off('focusin.bs.modal'); this.$element .removeclass('in') .off('click.dismiss.bs.modal') .off('mouseup.dismiss.bs.modal'); this.$dialog.off('mousedown.dismiss.bs.modal'); $.support.transition && this.$element.hasclass('fade') ? this.$element .one('bstransitionend', $.proxy(this.hidemodal, this)) .emulatetransitionend(modal.transition_duration) : this.hidemodal() }; modal.prototype.enforcefocus = function () { $(document) .off('focusin.bs.modal') // guard against infinite focus loop .on('focusin.bs.modal', $.proxy(function (e) { if (document !== e.target && this.$element[0] !== e.target && !this.$element.has(e.target).length) { this.$element.trigger('focus') } }, this)) }; modal.prototype.escape = function () { if (this.isshown && this.options.keyboard) { this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) { e.which == 27 && this.hide() }, this)) } else if (!this.isshown) { this.$element.off('keydown.dismiss.bs.modal') } }; modal.prototype.resize = function () { if (this.isshown) { $(window).on('resize.bs.modal', $.proxy(this.handleupdate, this)) } else { $(window).off('resize.bs.modal') } }; modal.prototype.hidemodal = function () { var that = this; this.$element.hide(); this.backdrop(function () { that.$body.removeclass('modal-open'); that.resetadjustments(); that.resetscrollbar(); that.$element.trigger('hidden.bs.modal') }) }; modal.prototype.removebackdrop = function () { this.$backdrop && this.$backdrop.remove(); this.$backdrop = null }; modal.prototype.backdrop = function (callback) { var that = this; var animate = this.$element.hasclass('fade') ? 'fade' : ''; if (this.isshown && this.options.backdrop) { var doanimate = $.support.transition && animate; this.$backdrop = $(document.createelement('div')) .addclass('modal-backdrop ' + animate) .appendto(this.$body); this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { if (this.ignorebackdropclick) { this.ignorebackdropclick = false; return } if (e.target !== e.currenttarget) return; this.options.backdrop == 'static' ? this.$element[0].focus() : this.hide() }, this)); if (doanimate) this.$backdrop[0].offsetwidth; // force reflow this.$backdrop.addclass('in'); if (!callback) return; doanimate ? this.$backdrop .one('bstransitionend', callback) .emulatetransitionend(modal.backdrop_transition_duration) : callback() } else if (!this.isshown && this.$backdrop) { this.$backdrop.removeclass('in'); var callbackremove = function () { that.removebackdrop(); callback && callback() }; $.support.transition && this.$element.hasclass('fade') ? this.$backdrop .one('bstransitionend', callbackremove) .emulatetransitionend(modal.backdrop_transition_duration) : callbackremove() } else if (callback) { callback() } }; // these following methods are used to handle overflowing modals modal.prototype.handleupdate = function () { this.adjustdialog() }; modal.prototype.adjustdialog = function () { var modalisoverflowing = this.$element[0].scrollheight > document.documentelement.clientheight; this.$element.css({ paddingleft: !this.bodyisoverflowing && modalisoverflowing ? this.scrollbarwidth : '', paddingright: this.bodyisoverflowing && !modalisoverflowing ? this.scrollbarwidth : '' }) }; modal.prototype.resetadjustments = function () { this.$element.css({ paddingleft: '', paddingright: '' }) }; modal.prototype.checkscrollbar = function () { var fullwindowwidth = window.innerwidth; if (!fullwindowwidth) { // workaround for missing window.innerwidth in ie8 var documentelementrect = document.documentelement.getboundingclientrect(); fullwindowwidth = documentelementrect.right - math.abs(documentelementrect.left) } this.bodyisoverflowing = document.body.clientwidth < fullwindowwidth; this.scrollbarwidth = this.measurescrollbar() }; modal.prototype.setscrollbar = function () { var bodypad = parseint((this.$body.css('padding-right') || 0), 10); this.originalbodypad = document.body.style.paddingright || ''; if (this.bodyisoverflowing) this.$body.css('padding-right', bodypad + this.scrollbarwidth) }; modal.prototype.resetscrollbar = function () { this.$body.css('padding-right', this.originalbodypad) }; modal.prototype.measurescrollbar = function () { // thx walsh var scrolldiv = document.createelement('div'); scrolldiv.classname = 'modal-scrollbar-measure'; this.$body.append(scrolldiv); var scrollbarwidth = scrolldiv.offsetwidth - scrolldiv.clientwidth; this.$body[0].removechild(scrolldiv); return scrollbarwidth }; // modal plugin definition // ======================= function plugin(option, _relatedtarget) { return this.each(function () { var $this = $(this); var data = $this.data('bs.modal'); var options = $.extend({}, modal.defaults, $this.data(), typeof option == 'object' && option); if (!data) $this.data('bs.modal', (data = new modal(this, options))); if (typeof option == 'string') data[option](_relatedtarget); else if (options.show) data.show(_relatedtarget) }) } var old = $.fn.modal; $.fn.modal = plugin; $.fn.modal.constructor = modal; // modal no conflict // ================= $.fn.modal.noconflict = function () { $.fn.modal = old; return this }; // modal data-api // ============== $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { var $this = $(this); var href = $this.attr('href'); var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))); // strip for ie7 var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()); if ($this.is('a')) e.preventdefault(); $target.one('show.bs.modal', function (showevent) { if (showevent.isdefaultprevented()) return; // only register focus restorer if modal will actually get shown $target.one('hidden.bs.modal', function () { $this.is(':visible') && $this.trigger('focus') }) }); plugin.call($target, option, this) }) }(jquery); /* ======================================================================== * bootstrap: tooltip.js v3.3.7 * http://getbootstrap.com/javascript/#tooltip * inspired by the original jquery.tipsy by jason frame * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // tooltip public class definition // =============================== var tooltip = function (element, options) { this.type = null; this.options = null; this.enabled = null; this.timeout = null; this.hoverstate = null; this.$element = null; this.instate = null; this.init('tooltip', element, options) }; tooltip.version = '3.3.7'; tooltip.transition_duration = 150; tooltip.defaults = { animation: true, placement: 'top', selector: false, template: '', trigger: 'hover focus', title: '', delay: 0, html: false, container: false, viewport: { selector: 'body', padding: 0 } }; tooltip.prototype.init = function (type, element, options) { this.enabled = true; this.type = type; this.$element = $(element); this.options = this.getoptions(options); this.$viewport = this.options.viewport && $($.isfunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)); this.instate = { click: false, hover: false, focus: false }; if (this.$element[0] instanceof document.constructor && !this.options.selector) { throw new error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') } var triggers = this.options.trigger.split(' '); for (var i = triggers.length; i--;) { var trigger = triggers[i]; if (trigger == 'click') { this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) } else if (trigger != 'manual') { var eventin = trigger == 'hover' ? 'mouseenter' : 'focusin'; var eventout = trigger == 'hover' ? 'mouseleave' : 'focusout'; this.$element.on(eventin + '.' + this.type, this.options.selector, $.proxy(this.enter, this)); this.$element.on(eventout + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) } } this.options.selector ? (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : this.fixtitle() }; tooltip.prototype.getdefaults = function () { return tooltip.defaults }; tooltip.prototype.getoptions = function (options) { options = $.extend({}, this.getdefaults(), this.$element.data(), options); if (options.delay && typeof options.delay == 'number') { options.delay = { show: options.delay, hide: options.delay } } return options }; tooltip.prototype.getdelegateoptions = function () { var options = {}; var defaults = this.getdefaults(); this._options && $.each(this._options, function (key, value) { if (defaults[key] != value) options[key] = value }); return options }; tooltip.prototype.enter = function (obj) { var self = obj instanceof this.constructor ? obj : $(obj.currenttarget).data('bs.' + this.type); if (!self) { self = new this.constructor(obj.currenttarget, this.getdelegateoptions()); $(obj.currenttarget).data('bs.' + this.type, self) } if (obj instanceof $.event) { self.instate[obj.type == 'focusin' ? 'focus' : 'hover'] = true } if (self.tip().hasclass('in') || self.hoverstate == 'in') { self.hoverstate = 'in'; return } cleartimeout(self.timeout); self.hoverstate = 'in'; if (!self.options.delay || !self.options.delay.show) return self.show(); self.timeout = settimeout(function () { if (self.hoverstate == 'in') self.show() }, self.options.delay.show) }; tooltip.prototype.isinstatetrue = function () { for (var key in this.instate) { if (this.instate[key]) return true } return false }; tooltip.prototype.leave = function (obj) { var self = obj instanceof this.constructor ? obj : $(obj.currenttarget).data('bs.' + this.type); if (!self) { self = new this.constructor(obj.currenttarget, this.getdelegateoptions()); $(obj.currenttarget).data('bs.' + this.type, self) } if (obj instanceof $.event) { self.instate[obj.type == 'focusout' ? 'focus' : 'hover'] = false } if (self.isinstatetrue()) return; cleartimeout(self.timeout); self.hoverstate = 'out'; if (!self.options.delay || !self.options.delay.hide) return self.hide(); self.timeout = settimeout(function () { if (self.hoverstate == 'out') self.hide() }, self.options.delay.hide) }; tooltip.prototype.show = function () { var e = $.event('show.bs.' + this.type); if (this.hascontent() && this.enabled) { this.$element.trigger(e); var indom = $.contains(this.$element[0].ownerdocument.documentelement, this.$element[0]); if (e.isdefaultprevented() || !indom) return; var that = this; var $tip = this.tip(); var tipid = this.getuid(this.type); this.setcontent(); $tip.attr('id', tipid); this.$element.attr('aria-describedby', tipid); if (this.options.animation) $tip.addclass('fade'); var placement = typeof this.options.placement == 'function' ? this.options.placement.call(this, $tip[0], this.$element[0]) : this.options.placement; var autotoken = /\s?auto?\s?/i; var autoplace = autotoken.test(placement); if (autoplace) placement = placement.replace(autotoken, '') || 'top'; $tip .detach() .css({ top: 0, left: 0, display: 'block' }) .addclass(placement) .data('bs.' + this.type, this); this.options.container ? $tip.appendto(this.options.container) : $tip.insertafter(this.$element); this.$element.trigger('inserted.bs.' + this.type); var pos = this.getposition(); var actualwidth = $tip[0].offsetwidth; var actualheight = $tip[0].offsetheight; if (autoplace) { var orgplacement = placement; var viewportdim = this.getposition(this.$viewport); placement = placement == 'bottom' && pos.bottom + actualheight > viewportdim.bottom ? 'top' : placement == 'top' && pos.top - actualheight < viewportdim.top ? 'bottom' : placement == 'right' && pos.right + actualwidth > viewportdim.width ? 'left' : placement == 'left' && pos.left - actualwidth < viewportdim.left ? 'right' : placement; $tip .removeclass(orgplacement) .addclass(placement) } var calculatedoffset = this.getcalculatedoffset(placement, pos, actualwidth, actualheight); this.applyplacement(calculatedoffset, placement); var complete = function () { var prevhoverstate = that.hoverstate; that.$element.trigger('shown.bs.' + that.type); that.hoverstate = null; if (prevhoverstate == 'out') that.leave(that) }; $.support.transition && this.$tip.hasclass('fade') ? $tip .one('bstransitionend', complete) .emulatetransitionend(tooltip.transition_duration) : complete() } }; tooltip.prototype.applyplacement = function (offset, placement) { var $tip = this.tip(); var width = $tip[0].offsetwidth; var height = $tip[0].offsetheight; // manually read margins because getboundingclientrect includes difference var margintop = parseint($tip.css('margin-top'), 10); var marginleft = parseint($tip.css('margin-left'), 10); // we must check for nan for ie 8/9 if (isnan(margintop)) margintop = 0; if (isnan(marginleft)) marginleft = 0; offset.top += margintop; offset.left += marginleft; // $.fn.offset doesn't round pixel values // so we use setoffset directly with our own function b-0 $.offset.setoffset($tip[0], $.extend({ using: function (props) { $tip.css({ top: math.round(props.top), left: math.round(props.left) }) } }, offset), 0); $tip.addclass('in'); // check to see if placing tip in new offset caused the tip to resize itself var actualwidth = $tip[0].offsetwidth; var actualheight = $tip[0].offsetheight; if (placement == 'top' && actualheight != height) { offset.top = offset.top + height - actualheight } var delta = this.getviewportadjusteddelta(placement, offset, actualwidth, actualheight); if (delta.left) offset.left += delta.left; else offset.top += delta.top; var isvertical = /top|bottom/.test(placement); var arrowdelta = isvertical ? delta.left * 2 - width + actualwidth : delta.top * 2 - height + actualheight; var arrowoffsetposition = isvertical ? 'offsetwidth' : 'offsetheight'; $tip.offset(offset); this.replacearrow(arrowdelta, $tip[0][arrowoffsetposition], isvertical) }; tooltip.prototype.replacearrow = function (delta, dimension, isvertical) { this.arrow() .css(isvertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') .css(isvertical ? 'top' : 'left', '') }; tooltip.prototype.setcontent = function () { var $tip = this.tip(); var title = this.gettitle(); $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title); $tip.removeclass('fade in top bottom left right') }; tooltip.prototype.hide = function (callback) { var that = this; var $tip = $(this.$tip); var e = $.event('hide.bs.' + this.type); function complete() { if (that.hoverstate != 'in') $tip.detach(); if (that.$element) { // todo: check whether guarding this code with this `if` is really necessary. that.$element .removeattr('aria-describedby') .trigger('hidden.bs.' + that.type) } callback && callback() } this.$element.trigger(e); if (e.isdefaultprevented()) return; $tip.removeclass('in'); $.support.transition && $tip.hasclass('fade') ? $tip .one('bstransitionend', complete) .emulatetransitionend(tooltip.transition_duration) : complete(); this.hoverstate = null; return this }; tooltip.prototype.fixtitle = function () { var $e = this.$element; if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') } }; tooltip.prototype.hascontent = function () { return this.gettitle() }; tooltip.prototype.getposition = function ($element) { $element = $element || this.$element; var el = $element[0]; var isbody = el.tagname == 'body'; var elrect = el.getboundingclientrect(); if (elrect.width == null) { // width and height are missing in ie8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 elrect = $.extend({}, elrect, { width: elrect.right - elrect.left, height: elrect.bottom - elrect.top }) } var issvg = window.svgelement && el instanceof window.svgelement; // avoid using $.offset() on svgs since it gives incorrect results in jquery 3. // see https://github.com/twbs/bootstrap/issues/20280 var eloffset = isbody ? { top: 0, left: 0 } : (issvg ? null : $element.offset()); var scroll = { scroll: isbody ? document.documentelement.scrolltop || document.body.scrolltop : $element.scrolltop() }; var outerdims = isbody ? { width: $(window).width(), height: $(window).height() } : null; return $.extend({}, elrect, scroll, outerdims, eloffset) }; tooltip.prototype.getcalculatedoffset = function (placement, pos, actualwidth, actualheight) { return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualwidth / 2 } : placement == 'top' ? { top: pos.top - actualheight, left: pos.left + pos.width / 2 - actualwidth / 2 } : placement == 'left' ? { top: pos.top + pos.height / 2 - actualheight / 2, left: pos.left - actualwidth } : /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualheight / 2, left: pos.left + pos.width } }; tooltip.prototype.getviewportadjusteddelta = function (placement, pos, actualwidth, actualheight) { var delta = { top: 0, left: 0 }; if (!this.$viewport) return delta; var viewportpadding = this.options.viewport && this.options.viewport.padding || 0; var viewportdimensions = this.getposition(this.$viewport); if (/right|left/.test(placement)) { var topedgeoffset = pos.top - viewportpadding - viewportdimensions.scroll; var bottomedgeoffset = pos.top + viewportpadding - viewportdimensions.scroll + actualheight; if (topedgeoffset < viewportdimensions.top) { // top overflow delta.top = viewportdimensions.top - topedgeoffset } else if (bottomedgeoffset > viewportdimensions.top + viewportdimensions.height) { // bottom overflow delta.top = viewportdimensions.top + viewportdimensions.height - bottomedgeoffset } } else { var leftedgeoffset = pos.left - viewportpadding; var rightedgeoffset = pos.left + viewportpadding + actualwidth; if (leftedgeoffset < viewportdimensions.left) { // left overflow delta.left = viewportdimensions.left - leftedgeoffset } else if (rightedgeoffset > viewportdimensions.right) { // right overflow delta.left = viewportdimensions.left + viewportdimensions.width - rightedgeoffset } } return delta }; tooltip.prototype.gettitle = function () { var title; var $e = this.$element; var o = this.options; title = $e.attr('data-original-title') || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title); return title }; tooltip.prototype.getuid = function (prefix) { do prefix += ~~(math.random() * 1000000); while (document.getelementbyid(prefix)); return prefix }; tooltip.prototype.tip = function () { if (!this.$tip) { this.$tip = $(this.options.template); if (this.$tip.length != 1) { throw new error(this.type + ' `template` option must consist of exactly 1 top-level element!') } } return this.$tip }; tooltip.prototype.arrow = function () { return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) }; tooltip.prototype.enable = function () { this.enabled = true }; tooltip.prototype.disable = function () { this.enabled = false }; tooltip.prototype.toggleenabled = function () { this.enabled = !this.enabled }; tooltip.prototype.toggle = function (e) { var self = this; if (e) { self = $(e.currenttarget).data('bs.' + this.type); if (!self) { self = new this.constructor(e.currenttarget, this.getdelegateoptions()); $(e.currenttarget).data('bs.' + this.type, self) } } if (e) { self.instate.click = !self.instate.click; if (self.isinstatetrue()) self.enter(self); else self.leave(self) } else { self.tip().hasclass('in') ? self.leave(self) : self.enter(self) } }; tooltip.prototype.destroy = function () { var that = this; cleartimeout(this.timeout); this.hide(function () { that.$element.off('.' + that.type).removedata('bs.' + that.type); if (that.$tip) { that.$tip.detach() } that.$tip = null; that.$arrow = null; that.$viewport = null; that.$element = null }) }; // tooltip plugin definition // ========================= function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.tooltip'); var options = typeof option == 'object' && option; if (!data && /destroy|hide/.test(option)) return; if (!data) $this.data('bs.tooltip', (data = new tooltip(this, options))); if (typeof option == 'string') data[option]() }) } var old = $.fn.tooltip; $.fn.tooltip = plugin; $.fn.tooltip.constructor = tooltip; // tooltip no conflict // =================== $.fn.tooltip.noconflict = function () { $.fn.tooltip = old; return this } }(jquery); /* ======================================================================== * bootstrap: popover.js v3.3.7 * http://getbootstrap.com/javascript/#popovers * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // popover public class definition // =============================== var popover = function (element, options) { this.init('popover', element, options) }; if (!$.fn.tooltip) throw new error('popover requires tooltip.js'); popover.version = '3.3.7'; popover.defaults = $.extend({}, $.fn.tooltip.constructor.defaults, { placement: 'right', trigger: 'click', content: '', template: '' }); // note: popover extends tooltip.js // ================================ popover.prototype = $.extend({}, $.fn.tooltip.constructor.prototype); popover.prototype.constructor = popover; popover.prototype.getdefaults = function () { return popover.defaults }; popover.prototype.setcontent = function () { var $tip = this.tip(); var title = this.gettitle(); var content = this.getcontent(); $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title); $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' ](content); $tip.removeclass('fade top bottom left right in'); // ie8 doesn't accept hiding via the `:empty` pseudo selector, we have to do // this manually by checking the contents. if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() }; popover.prototype.hascontent = function () { return this.gettitle() || this.getcontent() }; popover.prototype.getcontent = function () { var $e = this.$element; var o = this.options; return $e.attr('data-content') || (typeof o.content == 'function' ? o.content.call($e[0]) : o.content) }; popover.prototype.arrow = function () { return (this.$arrow = this.$arrow || this.tip().find('.arrow')) }; // popover plugin definition // ========================= function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.popover'); var options = typeof option == 'object' && option; if (!data && /destroy|hide/.test(option)) return; if (!data) $this.data('bs.popover', (data = new popover(this, options))); if (typeof option == 'string') data[option]() }) } var old = $.fn.popover; $.fn.popover = plugin; $.fn.popover.constructor = popover; // popover no conflict // =================== $.fn.popover.noconflict = function () { $.fn.popover = old; return this } }(jquery); /* ======================================================================== * bootstrap: scrollspy.js v3.3.7 * http://getbootstrap.com/javascript/#scrollspy * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // scrollspy class definition // ========================== function scrollspy(element, options) { this.$body = $(document.body); this.$scrollelement = $(element).is(document.body) ? $(window) : $(element); this.options = $.extend({}, scrollspy.defaults, options); this.selector = (this.options.target || '') + ' .nav li > a'; this.offsets = []; this.targets = []; this.activetarget = null; this.scrollheight = 0; this.$scrollelement.on('scroll.bs.scrollspy', $.proxy(this.process, this)); this.refresh(); this.process() } scrollspy.version = '3.3.7'; scrollspy.defaults = { offset: 10 }; scrollspy.prototype.getscrollheight = function () { return this.$scrollelement[0].scrollheight || math.max(this.$body[0].scrollheight, document.documentelement.scrollheight) }; scrollspy.prototype.refresh = function () { var that = this; var offsetmethod = 'offset'; var offsetbase = 0; this.offsets = []; this.targets = []; this.scrollheight = this.getscrollheight(); if (!$.iswindow(this.$scrollelement[0])) { offsetmethod = 'position'; offsetbase = this.$scrollelement.scrolltop() } this.$body .find(this.selector) .map(function () { var $el = $(this); var href = $el.data('target') || $el.attr('href'); var $href = /^#./.test(href) && $(href); return ($href && $href.length && $href.is(':visible') && [[$href[offsetmethod]().top + offsetbase, href]]) || null }) .sort(function (a, b) { return a[0] - b[0] }) .each(function () { that.offsets.push(this[0]); that.targets.push(this[1]) }) }; scrollspy.prototype.process = function () { var scrolltop = this.$scrollelement.scrolltop() + this.options.offset; var scrollheight = this.getscrollheight(); var maxscroll = this.options.offset + scrollheight - this.$scrollelement.height(); var offsets = this.offsets; var targets = this.targets; var activetarget = this.activetarget; var i; if (this.scrollheight != scrollheight) { this.refresh() } if (scrolltop >= maxscroll) { return activetarget != (i = targets[targets.length - 1]) && this.activate(i) } if (activetarget && scrolltop < offsets[0]) { this.activetarget = null; return this.clear() } for (i = offsets.length; i--;) { activetarget != targets[i] && scrolltop >= offsets[i] && (offsets[i + 1] === undefined || scrolltop < offsets[i + 1]) && this.activate(targets[i]) } }; scrollspy.prototype.activate = function (target) { this.activetarget = target; this.clear(); var selector = this.selector + '[data-target="' + target + '"],' + this.selector + '[href="' + target + '"]'; var active = $(selector) .parents('li') .addclass('active'); if (active.parent('.dropdown-menu').length) { active = active .closest('li.dropdown') .addclass('active') } active.trigger('activate.bs.scrollspy') }; scrollspy.prototype.clear = function () { $(this.selector) .parentsuntil(this.options.target, '.active') .removeclass('active') }; // scrollspy plugin definition // =========================== function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.scrollspy'); var options = typeof option == 'object' && option; if (!data) $this.data('bs.scrollspy', (data = new scrollspy(this, options))); if (typeof option == 'string') data[option]() }) } var old = $.fn.scrollspy; $.fn.scrollspy = plugin; $.fn.scrollspy.constructor = scrollspy; // scrollspy no conflict // ===================== $.fn.scrollspy.noconflict = function () { $.fn.scrollspy = old; return this }; // scrollspy data-api // ================== $(window).on('load.bs.scrollspy.data-api', function () { $('[data-spy="scroll"]').each(function () { var $spy = $(this); plugin.call($spy, $spy.data()) }) }) }(jquery); /* ======================================================================== * bootstrap: tab.js v3.3.7 * http://getbootstrap.com/javascript/#tabs * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // tab class definition // ==================== var tab = function (element) { // jscs:disable requiredollarbeforejqueryassignment this.element = $(element) // jscs:enable requiredollarbeforejqueryassignment }; tab.version = '3.3.7'; tab.transition_duration = 150; tab.prototype.show = function () { var $this = this.element; var $ul = $this.closest('ul:not(.dropdown-menu)'); var selector = $this.data('target'); if (!selector) { selector = $this.attr('href'); selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } if ($this.parent('li').hasclass('active')) return; var $previous = $ul.find('.active:last a'); var hideevent = $.event('hide.bs.tab', { relatedtarget: $this[0] }); var showevent = $.event('show.bs.tab', { relatedtarget: $previous[0] }); $previous.trigger(hideevent); $this.trigger(showevent); if (showevent.isdefaultprevented() || hideevent.isdefaultprevented()) return; var $target = $(selector); this.activate($this.closest('li'), $ul); this.activate($target, $target.parent(), function () { $previous.trigger({ type: 'hidden.bs.tab', relatedtarget: $this[0] }); $this.trigger({ type: 'shown.bs.tab', relatedtarget: $previous[0] }) }) }; tab.prototype.activate = function (element, container, callback) { var $active = container.find('> .active'); var transition = callback && $.support.transition && ($active.length && $active.hasclass('fade') || !!container.find('> .fade').length); function next() { $active .removeclass('active') .find('> .dropdown-menu > .active') .removeclass('active') .end() .find('[data-toggle="tab"]') .attr('aria-expanded', false); element .addclass('active') .find('[data-toggle="tab"]') .attr('aria-expanded', true); if (transition) { element[0].offsetwidth; // reflow for transition element.addclass('in') } else { element.removeclass('fade') } if (element.parent('.dropdown-menu').length) { element .closest('li.dropdown') .addclass('active') .end() .find('[data-toggle="tab"]') .attr('aria-expanded', true) } callback && callback() } $active.length && transition ? $active .one('bstransitionend', next) .emulatetransitionend(tab.transition_duration) : next(); $active.removeclass('in') }; // tab plugin definition // ===================== function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.tab'); if (!data) $this.data('bs.tab', (data = new tab(this))); if (typeof option == 'string') data[option]() }) } var old = $.fn.tab; $.fn.tab = plugin; $.fn.tab.constructor = tab; // tab no conflict // =============== $.fn.tab.noconflict = function () { $.fn.tab = old; return this }; // tab data-api // ============ var clickhandler = function (e) { e.preventdefault(); plugin.call($(this), 'show') }; $(document) .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickhandler) .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickhandler) }(jquery); /* ======================================================================== * bootstrap: affix.js v3.3.7 * http://getbootstrap.com/javascript/#affix * ======================================================================== * copyright 2011-2016 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // affix class definition // ====================== var affix = function (element, options) { this.options = $.extend({}, affix.defaults, options); this.$target = $(this.options.target) .on('scroll.bs.affix.data-api', $.proxy(this.checkposition, this)) .on('click.bs.affix.data-api', $.proxy(this.checkpositionwitheventloop, this)); this.$element = $(element); this.affixed = null; this.unpin = null; this.pinnedoffset = null; this.checkposition() }; affix.version = '3.3.7'; affix.reset = 'affix affix-top affix-bottom'; affix.defaults = { offset: 0, target: window }; affix.prototype.getstate = function (scrollheight, height, offsettop, offsetbottom) { var scrolltop = this.$target.scrolltop(); var position = this.$element.offset(); var targetheight = this.$target.height(); if (offsettop != null && this.affixed == 'top') return scrolltop < offsettop ? 'top' : false; if (this.affixed == 'bottom') { if (offsettop != null) return (scrolltop + this.unpin <= position.top) ? false : 'bottom'; return (scrolltop + targetheight <= scrollheight - offsetbottom) ? false : 'bottom' } var initializing = this.affixed == null; var collidertop = initializing ? scrolltop : position.top; var colliderheight = initializing ? targetheight : height; if (offsettop != null && scrolltop <= offsettop) return 'top'; if (offsetbottom != null && (collidertop + colliderheight >= scrollheight - offsetbottom)) return 'bottom'; return false }; affix.prototype.getpinnedoffset = function () { if (this.pinnedoffset) return this.pinnedoffset; this.$element.removeclass(affix.reset).addclass('affix'); var scrolltop = this.$target.scrolltop(); var position = this.$element.offset(); return (this.pinnedoffset = position.top - scrolltop) }; affix.prototype.checkpositionwitheventloop = function () { settimeout($.proxy(this.checkposition, this), 1) }; affix.prototype.checkposition = function () { if (!this.$element.is(':visible')) return; var height = this.$element.height(); var offset = this.options.offset; var offsettop = offset.top; var offsetbottom = offset.bottom; var scrollheight = math.max($(document).height(), $(document.body).height()); if (typeof offset != 'object') offsetbottom = offsettop = offset; if (typeof offsettop == 'function') offsettop = offset.top(this.$element); if (typeof offsetbottom == 'function') offsetbottom = offset.bottom(this.$element); var affix = this.getstate(scrollheight, height, offsettop, offsetbottom); if (this.affixed != affix) { if (this.unpin != null) this.$element.css('top', ''); var affixtype = 'affix' + (affix ? '-' + affix : ''); var e = $.event(affixtype + '.bs.affix'); this.$element.trigger(e); if (e.isdefaultprevented()) return; this.affixed = affix; this.unpin = affix == 'bottom' ? this.getpinnedoffset() : null; this.$element .removeclass(affix.reset) .addclass(affixtype) .trigger(affixtype.replace('affix', 'affixed') + '.bs.affix') } if (affix == 'bottom') { this.$element.offset({ top: scrollheight - height - offsetbottom }) } }; // affix plugin definition // ======================= function plugin(option) { return this.each(function () { var $this = $(this); var data = $this.data('bs.affix'); var options = typeof option == 'object' && option; if (!data) $this.data('bs.affix', (data = new affix(this, options))); if (typeof option == 'string') data[option]() }) } var old = $.fn.affix; $.fn.affix = plugin; $.fn.affix.constructor = affix; // affix no conflict // ================= $.fn.affix.noconflict = function () { $.fn.affix = old; return this }; // affix data-api // ============== $(window).on('load', function () { $('[data-spy="affix"]').each(function () { var $spy = $(this); var data = $spy.data(); data.offset = data.offset || {}; if (data.offsetbottom != null) data.offset.bottom = data.offsetbottom; if (data.offsettop != null) data.offset.top = data.offsettop; plugin.call($spy, data) }) }) }(jquery);