| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/bootstrap.js.tar |
home/xbodynamge/www/wp-content/themes/zerif-lite/js/bootstrap.js 0000644 00000113037 15113155123 0021103 0 ustar 00 /*!
* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if ("undefined" == typeof jQuery) {
throw new Error( "Bootstrap's JavaScript requires jQuery" );
} + function(a) {
"use strict";
function b() {
var a = document.createElement( "bootstrap" ),
b = {
WebkitTransition: "webkitTransitionEnd",
MozTransition: "transitionend",
OTransition: "oTransitionEnd otransitionend",
transition: "transitionend"
};
for (var c in b) {
if (void 0 !== a.style[c]) {
return
end: b[c]
}
};
return ! 1
}
a.fn.emulateTransitionEnd = function(b) {
var c = ! 1,
d = this;
a( this ).one(
a.support.transition.end, function() {
c = ! 0
}
);
var e = function() {
c || a( d ).trigger( a.support.transition.end )
};
return setTimeout( e, b ), this
}, a(
function() {
a.support.transition = b()
}
)
}(jQuery), + function(a) {
"use strict";
var b = '[data-dismiss="alert"]',
c = function(c) {
a( c ).on( "click", b, this.close )
};
c.prototype.close = function(b) {
function c() {
f.trigger( "closed.bs.alert" ).remove()
}
var d = a( this ),
e = d.attr( "data-target" );
e || (e = d.attr( "href" ), e = e && e.replace( /.*(?=#[^\s]*$)/, "" ));
var f = a( e );
b && b.preventDefault(), f.length || (f = d.hasClass( "alert" ) ? d : d.parent()), f.trigger( b = a.Event( "close.bs.alert" ) ), b.isDefaultPrevented() || (f.removeClass( "in" ), a.support.transition && f.hasClass( "fade" ) ? f.one( a.support.transition.end, c ).emulateTransitionEnd( 150 ) : c())
};
var d = a.fn.alert;
a.fn.alert = function(b) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.alert" );
e || d.data( "bs.alert", e = new c( this ) ), "string" == typeof b && e[b].call( d )
}
)
}, a.fn.alert.Constructor = c, a.fn.alert.noConflict = function() {
return a.fn.alert = d, this
}, a( document ).on( "click.bs.alert.data-api", b, c.prototype.close )
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.isLoading = ! 1
};
b.DEFAULTS = {
loadingText: "loading..."
}, b.prototype.setState = function(b) {
var c = "disabled",
d = this.$element,
e = d.is( "input" ) ? "val" : "html",
f = d.data();
b += "Text", f.resetText || d.data( "resetText", d[e]() ), d[e](f[b] || this.options[b]), setTimeout(
a.proxy(
function() {
"loadingText" == b ? (this.isLoading = ! 0, d.addClass( c ).attr( c, c )) : this.isLoading && (this.isLoading = ! 1, d.removeClass( c ).removeAttr( c ))
}, this
), 0
)
}, b.prototype.toggle = function() {
var a = ! 0,
b = this.$element.closest( '[data-toggle="buttons"]' );
if (b.length) {
var c = this.$element.find( "input" );
"radio" == c.prop( "type" ) && (c.prop( "checked" ) && this.$element.hasClass( "active" ) ? a = ! 1 : b.find( ".active" ).removeClass( "active" )), a && c.prop( "checked", ! this.$element.hasClass( "active" ) ).trigger( "change" )
}
a && this.$element.toggleClass( "active" )
};
var c = a.fn.button;
a.fn.button = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.button" ),
f = "object" == typeof c && c;
e || d.data( "bs.button", e = new b( this, f ) ), "toggle" == c ? e.toggle() : c && e.setState( c )
}
)
}, a.fn.button.Constructor = b, a.fn.button.noConflict = function() {
return a.fn.button = c, this
}, a( document ).on(
"click.bs.button.data-api", "[data-toggle^=button]", function(b) {
var c = a( b.target );
c.hasClass( "btn" ) || (c = c.closest( ".btn" )), c.button( "toggle" ), b.preventDefault()
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.$element = a( b ), this.$indicators = this.$element.find( ".carousel-indicators" ), this.options = c, this.paused = this.sliding = this.interval = this.$active = this.$items = null, "hover" == this.options.pause && this.$element.on( "mouseenter", a.proxy( this.pause, this ) ).on( "mouseleave", a.proxy( this.cycle, this ) )
};
b.DEFAULTS = {
interval: 5e3,
pause: "hover",
wrap: ! 0
}, b.prototype.cycle = function(b) {
return b || (this.paused = ! 1), this.interval && clearInterval( this.interval ), this.options.interval && ! this.paused && (this.interval = setInterval( a.proxy( this.next, this ), this.options.interval )), this
}, b.prototype.getActiveIndex = function() {
return this.$active = this.$element.find( ".item.active" ), this.$items = this.$active.parent().children(), this.$items.index( this.$active )
}, b.prototype.to = function(b) {
var c = this,
d = this.getActiveIndex();
return b > this.$items.length - 1 || 0 > b ? void 0 : this.sliding ? this.$element.one(
"slid.bs.carousel", function() {
c.to( b )
}
) : d == b ? this.pause().cycle() : this.slide( b > d ? "next" : "prev", a( this.$items[b] ) )
}, b.prototype.pause = function(b) {
return b || (this.paused = ! 0), this.$element.find( ".next, .prev" ).length && a.support.transition && (this.$element.trigger( a.support.transition.end ), this.cycle( ! 0 )), this.interval = clearInterval( this.interval ), this
}, b.prototype.next = function() {
return this.sliding ? void 0 : this.slide( "next" )
}, b.prototype.prev = function() {
return this.sliding ? void 0 : this.slide( "prev" )
}, b.prototype.slide = function(b, c) {
var d = this.$element.find( ".item.active" ),
e = c || d[b](),
f = this.interval,
g = "next" == b ? "left" : "right",
h = "next" == b ? "first" : "last",
i = this;
if ( ! e.length) {
if ( ! this.options.wrap) {
return;
}
e = this.$element.find( ".item" )[h]()
}
if (e.hasClass( "active" )) {
return this.sliding = ! 1;
}
var j = a.Event(
"slide.bs.carousel", {
relatedTarget: e[0],
direction: g
}
);
return this.$element.trigger( j ), j.isDefaultPrevented() ? void 0 : (this.sliding = ! 0, f && this.pause(), this.$indicators.length && (this.$indicators.find( ".active" ).removeClass( "active" ), this.$element.one(
"slid.bs.carousel", function() {
var b = a( i.$indicators.children()[i.getActiveIndex()] );
b && b.addClass( "active" )
}
)), a.support.transition && this.$element.hasClass( "slide" ) ? (e.addClass( b ), e[0].offsetWidth, d.addClass( g ), e.addClass( g ), d.one(
a.support.transition.end, function() {
e.removeClass( [b, g].join( " " ) ).addClass( "active" ), d.removeClass( ["active", g].join( " " ) ), i.sliding = ! 1, setTimeout(
function() {
i.$element.trigger( "slid.bs.carousel" )
}, 0
)
}
).emulateTransitionEnd( 1e3 * d.css( "transition-duration" ).slice( 0, -1 ) )) : (d.removeClass( "active" ), e.addClass( "active" ), this.sliding = ! 1, this.$element.trigger( "slid.bs.carousel" )), f && this.cycle(), this)
};
var c = a.fn.carousel;
a.fn.carousel = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.carousel" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c ),
g = "string" == typeof c ? c : f.slide;
e || d.data( "bs.carousel", e = new b( this, f ) ), "number" == typeof c ? e.to( c ) : g ? e[g]() : f.interval && e.pause().cycle()
}
)
}, a.fn.carousel.Constructor = b, a.fn.carousel.noConflict = function() {
return a.fn.carousel = c, this
}, a( document ).on(
"click.bs.carousel.data-api", "[data-slide], [data-slide-to]", function(b) {
var c, d = a( this ),
e = a( d.attr( "data-target" ) || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = a.extend( {}, e.data(), d.data() ),
g = d.attr( "data-slide-to" );
g && (f.interval = ! 1), e.carousel( f ), (g = d.attr( "data-slide-to" )) && e.data( "bs.carousel" ).to( g ), b.preventDefault()
}
), a( window ).on(
"load", function() {
a( '[data-ride="carousel"]' ).each(
function() {
var b = a( this );
b.carousel( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.transitioning = null, this.options.parent && (this.$parent = a( this.options.parent )), this.options.toggle && this.toggle()
};
b.DEFAULTS = {
toggle: ! 0
}, b.prototype.dimension = function() {
var a = this.$element.hasClass( "width" );
return a ? "width" : "height"
}, b.prototype.show = function() {
if ( ! this.transitioning && ! this.$element.hasClass( "in" )) {
var b = a.Event( "show.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.$parent && this.$parent.find( "> .panel > .in" );
if (c && c.length) {
var d = c.data( "bs.collapse" );
if (d && d.transitioning) {
return;
}
c.collapse( "hide" ), d || c.data( "bs.collapse", null )
}
var e = this.dimension();
this.$element.removeClass( "collapse" ).addClass( "collapsing" )[e](0), this.transitioning = 1;
var f = function() {
this.$element.removeClass( "collapsing" ).addClass( "collapse in" )[e]("auto"), this.transitioning = 0, this.$element.trigger( "shown.bs.collapse" )
};
if ( ! a.support.transition) {
return f.call( this );
}
var g = a.camelCase( ["scroll", e].join( "-" ) );
this.$element.one( a.support.transition.end, a.proxy( f, this ) ).emulateTransitionEnd( 350 )[e](this.$element[0][g])
}
}
}, b.prototype.hide = function() {
if ( ! this.transitioning && this.$element.hasClass( "in" )) {
var b = a.Event( "hide.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.dimension();
this.$element[c](this.$element[c]())[0].offsetHeight, this.$element.addClass( "collapsing" ).removeClass( "collapse" ).removeClass( "in" ), this.transitioning = 1;
var d = function() {
this.transitioning = 0, this.$element.trigger( "hidden.bs.collapse" ).removeClass( "collapsing" ).addClass( "collapse" )
};
return a.support.transition ? void this.$element[c](0).one( a.support.transition.end, a.proxy( d, this ) ).emulateTransitionEnd( 350 ) : d.call( this )
}
}
}, b.prototype.toggle = function() {
this[this.$element.hasClass( "in" ) ? "hide" : "show"]()
};
var c = a.fn.collapse;
a.fn.collapse = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.collapse" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c );
! e && f.toggle && "show" == c && (c = ! c), e || d.data( "bs.collapse", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.collapse.Constructor = b, a.fn.collapse.noConflict = function() {
return a.fn.collapse = c, this
}, a( document ).on(
"click.bs.collapse.data-api", "[data-toggle=collapse]", function(b) {
var c, d = a( this ),
e = d.attr( "data-target" ) || b.preventDefault() || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ),
f = a( e ),
g = f.data( "bs.collapse" ),
h = g ? "toggle" : d.data(),
i = d.attr( "data-parent" ),
j = i && a( i );
g && g.transitioning || (j && j.find( '[data-toggle=collapse][data-parent="' + i + '"]' ).not( d ).addClass( "collapsed" ), d[f.hasClass( "in" ) ? "addClass" : "removeClass"]("collapsed")), f.collapse( h )
}
)
}(jQuery), + function(a) {
"use strict";
function b(b) {
a( d ).remove(), a( e ).each(
function() {
var d = c( a( this ) ),
e = {
relatedTarget: this
};
d.hasClass( "open" ) && (d.trigger( b = a.Event( "hide.bs.dropdown", e ) ), b.isDefaultPrevented() || d.removeClass( "open" ).trigger( "hidden.bs.dropdown", e ))
}
)
}
function c(b) {
var c = b.attr( "data-target" );
c || (c = b.attr( "href" ), c = c && /#[A-Za-z]/.test( c ) && c.replace( /.*(?=#[^\s]*$)/, "" ));
var d = c && a( c );
return d && d.length ? d : b.parent()
}
var d = ".dropdown-backdrop",
e = "[data-toggle=dropdown]",
f = function(b) {
a( b ).on( "click.bs.dropdown", this.toggle )
};
f.prototype.toggle = function(d) {
var e = a( this );
if ( ! e.is( ".disabled, :disabled" )) {
var f = c( e ),
g = f.hasClass( "open" );
if (b(), ! g) {
"ontouchstart" in document.documentElement && ! f.closest( ".navbar-nav" ).length && a( '<div class="dropdown-backdrop"/>' ).insertAfter( a( this ) ).on( "click", b );
var h = {
relatedTarget: this
};
if (f.trigger( d = a.Event( "show.bs.dropdown", h ) ), d.isDefaultPrevented()) {
return;
}
f.toggleClass( "open" ).trigger( "shown.bs.dropdown", h ), e.focus()
}
return ! 1
}
}, f.prototype.keydown = function(b) {
if (/(38|40|27)/.test( b.keyCode )) {
var d = a( this );
if (b.preventDefault(), b.stopPropagation(), ! d.is( ".disabled, :disabled" )) {
var f = c( d ),
g = f.hasClass( "open" );
if ( ! g || g && 27 == b.keyCode) {
return 27 == b.which && f.find( e ).focus(), d.click();
}
var h = " li:not(.divider):visible a",
i = f.find( "[role=menu]" + h + ", [role=listbox]" + h );
if (i.length) {
var j = i.index( i.filter( ":focus" ) );
38 == b.keyCode && j > 0 && j--, 40 == b.keyCode && j < i.length - 1 && j++, ~j || (j = 0), i.eq( j ).focus()
}
}
}
};
var g = a.fn.dropdown;
a.fn.dropdown = function(b) {
return this.each(
function() {
var c = a( this ),
d = c.data( "bs.dropdown" );
d || c.data( "bs.dropdown", d = new f( this ) ), "string" == typeof b && d[b].call( c )
}
)
}, a.fn.dropdown.Constructor = f, a.fn.dropdown.noConflict = function() {
return a.fn.dropdown = g, this
}, a( document ).on( "click.bs.dropdown.data-api", b ).on(
"click.bs.dropdown.data-api", ".dropdown form", function(a) {
a.stopPropagation()
}
).on( "click.bs.dropdown.data-api", e, f.prototype.toggle ).on( "keydown.bs.dropdown.data-api", e + ", [role=menu], [role=listbox]", f.prototype.keydown )
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.options = c, this.$element = a( b ), this.$backdrop = this.isShown = null, this.options.remote && this.$element.find( ".modal-content" ).load(
this.options.remote, a.proxy(
function() {
this.$element.trigger( "loaded.bs.modal" )
}, this
)
)
};
b.DEFAULTS = {
backdrop: ! 0,
keyboard: ! 0,
show: ! 0
}, b.prototype.toggle = function(a) {
return this[this.isShown ? "hide" : "show"](a)
}, b.prototype.show = function(b) {
var c = this,
d = a.Event(
"show.bs.modal", {
relatedTarget: b
}
);
this.$element.trigger( d ), this.isShown || d.isDefaultPrevented() || (this.isShown = ! 0, this.escape(), this.$element.on( "click.dismiss.bs.modal", '[data-dismiss="modal"]', a.proxy( this.hide, this ) ), this.backdrop(
function() {
var d = a.support.transition && c.$element.hasClass( "fade" );
c.$element.parent().length || c.$element.appendTo( document.body ), c.$element.show().scrollTop( 0 ), d && c.$element[0].offsetWidth, c.$element.addClass( "in" ).attr( "aria-hidden", ! 1 ), c.enforceFocus();
var e = a.Event(
"shown.bs.modal", {
relatedTarget: b
}
);
d ? c.$element.find( ".modal-dialog" ).one(
a.support.transition.end, function() {
c.$element.focus().trigger( e )
}
).emulateTransitionEnd( 300 ) : c.$element.focus().trigger( e )
}
))
}, b.prototype.hide = function(b) {
b && b.preventDefault(), b = a.Event( "hide.bs.modal" ), this.$element.trigger( b ), this.isShown && ! b.isDefaultPrevented() && (this.isShown = ! 1, this.escape(), a( document ).off( "focusin.bs.modal" ), this.$element.removeClass( "in" ).attr( "aria-hidden", ! 0 ).off( "click.dismiss.bs.modal" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$element.one( a.support.transition.end, a.proxy( this.hideModal, this ) ).emulateTransitionEnd( 300 ) : this.hideModal())
}, b.prototype.enforceFocus = function() {
a( document ).off( "focusin.bs.modal" ).on(
"focusin.bs.modal", a.proxy(
function(a) {
this.$element[0] === a.target || this.$element.has( a.target ).length || this.$element.focus()
}, this
)
)
}, b.prototype.escape = function() {
this.isShown && this.options.keyboard ? this.$element.on(
"keyup.dismiss.bs.modal", a.proxy(
function(a) {
27 == a.which && this.hide()
}, this
)
) : this.isShown || this.$element.off( "keyup.dismiss.bs.modal" )
}, b.prototype.hideModal = function() {
var a = this;
this.$element.hide(), this.backdrop(
function() {
a.removeBackdrop(), a.$element.trigger( "hidden.bs.modal" )
}
)
}, b.prototype.removeBackdrop = function() {
this.$backdrop && this.$backdrop.remove(), this.$backdrop = null
}, b.prototype.backdrop = function(b) {
var c = this.$element.hasClass( "fade" ) ? "fade" : "";
if (this.isShown && this.options.backdrop) {
var d = a.support.transition && c;
if (this.$backdrop = a( '<div class="modal-backdrop ' + c + '" />' ).appendTo( document.body ), this.$element.on(
"click.dismiss.bs.modal", a.proxy(
function(a) {
a.target === a.currentTarget && ("static" == this.options.backdrop ? this.$element[0].focus.call( this.$element[0] ) : this.hide.call( this ))
}, this
)
), d && this.$backdrop[0].offsetWidth, this.$backdrop.addClass( "in" ), ! b) {
return;
}
d ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()
} else {
! this.isShown && this.$backdrop ? (this.$backdrop.removeClass( "in" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()) : b && b()
}
};
var c = a.fn.modal;
a.fn.modal = function(c, d) {
return this.each(
function() {
var e = a( this ),
f = e.data( "bs.modal" ),
g = a.extend( {}, b.DEFAULTS, e.data(), "object" == typeof c && c );
f || e.data( "bs.modal", f = new b( this, g ) ), "string" == typeof c ? f[c](d) : g.show && f.show( d )
}
)
}, a.fn.modal.Constructor = b, a.fn.modal.noConflict = function() {
return a.fn.modal = c, this
}, a( document ).on(
"click.bs.modal.data-api", '[data-toggle="modal"]', function(b) {
var c = a( this ),
d = c.attr( "href" ),
e = a( c.attr( "data-target" ) || d && d.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = e.data( "bs.modal" ) ? "toggle" : a.extend(
{
remote: ! / # / .test( d ) && d
}, e.data(), c.data()
);
c.is( "a" ) && b.preventDefault(), e.modal( f, this ).one(
"hide", function() {
c.is( ":visible" ) && c.focus()
}
)
}
), a( document ).on(
"show.bs.modal", ".modal", function() {
a( document.body ).addClass( "modal-open" )
}
).on(
"hidden.bs.modal", ".modal", function() {
a( document.body ).removeClass( "modal-open" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.type = this.options = this.enabled = this.timeout = this.hoverState = this.$element = null, this.init( "tooltip", a, b )
};
b.DEFAULTS = {
animation: ! 0,
placement: "top",
selector: ! 1,
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
trigger: "hover focus",
title: "",
delay: 0,
html: ! 1,
container: ! 1
}, b.prototype.init = function(b, c, d) {
this.enabled = ! 0, this.type = b, this.$element = a( c ), this.options = this.getOptions( d );
for (var e = this.options.trigger.split( " " ), f = e.length; f--;) {
var g = e[f];
if ("click" == g) {
this.$element.on( "click." + this.type, this.options.selector, a.proxy( this.toggle, this ) );
} else if ("manual" != g) {
var h = "hover" == g ? "mouseenter" : "focusin",
i = "hover" == g ? "mouseleave" : "focusout";
this.$element.on( h + "." + this.type, this.options.selector, a.proxy( this.enter, this ) ), this.$element.on( i + "." + this.type, this.options.selector, a.proxy( this.leave, this ) )
}
}
this.options.selector ? this._options = a.extend(
{}, this.options, {
trigger: "manual",
selector: ""
}
) : this.fixTitle()
}, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.getOptions = function(b) {
return b = a.extend( {}, this.getDefaults(), this.$element.data(), b ), b.delay && "number" == typeof b.delay && (b.delay = {
show: b.delay,
hide: b.delay
}), b
}, b.prototype.getDelegateOptions = function() {
var b = {},
c = this.getDefaults();
return this._options && a.each(
this._options, function(a, d) {
c[a] != d && (b[a] = d)
}
), b
}, b.prototype.enter = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "in", c.options.delay && c.options.delay.show ? void(
c.timeout = setTimeout(
function() {
"in" == c.hoverState && c.show()
}, c.options.delay.show
)
) : c.show()
}, b.prototype.leave = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "out", c.options.delay && c.options.delay.hide ? void(
c.timeout = setTimeout(
function() {
"out" == c.hoverState && c.hide()
}, c.options.delay.hide
)
) : c.hide()
}, b.prototype.show = function() {
var b = a.Event( "show.bs." + this.type );
if (this.hasContent() && this.enabled) {
if (this.$element.trigger( b ), b.isDefaultPrevented()) {
return;
}
var c = this,
d = this.tip();
this.setContent(), this.options.animation && d.addClass( "fade" );
var e = "function" == typeof this.options.placement ? this.options.placement.call( this, d[0], this.$element[0] ) : this.options.placement,
f = /\s?auto?\s?/i,
g = f.test( e );
g && (e = e.replace( f, "" ) || "top"), d.detach().css(
{
top: 0,
left: 0,
display: "block"
}
).addClass( e ), this.options.container ? d.appendTo( this.options.container ) : d.insertAfter( this.$element );
var h = this.getPosition(),
i = d[0].offsetWidth,
j = d[0].offsetHeight;
if (g) {
var k = this.$element.parent(),
l = e,
m = document.documentElement.scrollTop || document.body.scrollTop,
n = "body" == this.options.container ? window.innerWidth : k.outerWidth(),
o = "body" == this.options.container ? window.innerHeight : k.outerHeight(),
p = "body" == this.options.container ? 0 : k.offset().left;
e = "bottom" == e && h.top + h.height + j - m > o ? "top" : "top" == e && h.top - m - j < 0 ? "bottom" : "right" == e && h.right + i > n ? "left" : "left" == e && h.left - i < p ? "right" : e, d.removeClass( l ).addClass( e )
}
var q = this.getCalculatedOffset( e, h, i, j );
this.applyPlacement( q, e ), this.hoverState = null;
var r = function() {
c.$element.trigger( "shown.bs." + c.type )
};
a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, r ).emulateTransitionEnd( 150 ) : r()
}
}, b.prototype.applyPlacement = function(b, c) {
var d, e = this.tip(),
f = e[0].offsetWidth,
g = e[0].offsetHeight,
h = parseInt( e.css( "margin-top" ), 10 ),
i = parseInt( e.css( "margin-left" ), 10 );
isNaN( h ) && (h = 0), isNaN( i ) && (i = 0), b.top = b.top + h, b.left = b.left + i, a.offset.setOffset(
e[0], a.extend(
{
using: function(a) {
e.css(
{
top: Math.round( a.top ),
left: Math.round( a.left )
}
)
}
}, b
), 0
), e.addClass( "in" );
var j = e[0].offsetWidth,
k = e[0].offsetHeight;
if ("top" == c && k != g && (d = ! 0, b.top = b.top + g - k), /bottom|top/.test( c )) {
var l = 0;
b.left < 0 && (l = -2 * b.left, b.left = 0, e.offset( b ), j = e[0].offsetWidth, k = e[0].offsetHeight), this.replaceArrow( l - f + j, j, "left" )
} else {
this.replaceArrow( k - g, k, "top" );
}
d && e.offset( b )
}, b.prototype.replaceArrow = function(a, b, c) {
this.arrow().css( c, a ? 50 * (1 - a / b) + "%" : "" )
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle();
a.find( ".tooltip-inner" )[this.options.html ? "html" : "text"](b), a.removeClass( "fade in top bottom left right" )
}, b.prototype.hide = function() {
function b() {
"in" != c.hoverState && d.detach(), c.$element.trigger( "hidden.bs." + c.type )
}
var c = this,
d = this.tip(),
e = a.Event( "hide.bs." + this.type );
return this.$element.trigger( e ), e.isDefaultPrevented() ? void 0 : (d.removeClass( "in" ), a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b(), this.hoverState = null, this)
}, b.prototype.fixTitle = function() {
var a = this.$element;
(a.attr( "title" ) || "string" != typeof a.attr( "data-original-title" )) && a.attr( "data-original-title", a.attr( "title" ) || "" ).attr( "title", "" )
}, b.prototype.hasContent = function() {
return this.getTitle()
}, b.prototype.getPosition = function() {
var b = this.$element[0];
return a.extend(
{}, "function" == typeof b.getBoundingClientRect ? b.getBoundingClientRect() : {
width: b.offsetWidth,
height: b.offsetHeight
}, this.$element.offset()
)
}, b.prototype.getCalculatedOffset = function(a, b, c, d) {
return "bottom" == a ? {
top: b.top + b.height,
left: b.left + b.width / 2 - c / 2
} : "top" == a ? {
top: b.top - d,
left: b.left + b.width / 2 - c / 2
} : "left" == a ? {
top: b.top + b.height / 2 - d / 2,
left: b.left - c
} : {
top: b.top + b.height / 2 - d / 2,
left: b.left + b.width
}
}, b.prototype.getTitle = function() {
var a, b = this.$element,
c = this.options;
return a = b.attr( "data-original-title" ) || ("function" == typeof c.title ? c.title.call( b[0] ) : c.title)
}, b.prototype.tip = function() {
return this.$tip = this.$tip || a( this.options.template )
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".tooltip-arrow" )
}, b.prototype.validate = function() {
this.$element[0].parentNode || (this.hide(), this.$element = null, this.options = null)
}, b.prototype.enable = function() {
this.enabled = ! 0
}, b.prototype.disable = function() {
this.enabled = ! 1
}, b.prototype.toggleEnabled = function() {
this.enabled = ! this.enabled
}, b.prototype.toggle = function(b) {
var c = b ? a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type ) : this;
c.tip().hasClass( "in" ) ? c.leave( c ) : c.enter( c )
}, b.prototype.destroy = function() {
clearTimeout( this.timeout ), this.hide().$element.off( "." + this.type ).removeData( "bs." + this.type )
};
var c = a.fn.tooltip;
a.fn.tooltip = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tooltip" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.tooltip", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.tooltip.Constructor = b, a.fn.tooltip.noConflict = function() {
return a.fn.tooltip = c, this
}
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.init( "popover", a, b )
};
if ( ! a.fn.tooltip) {
throw new Error( "Popover requires tooltip.js" );
}
b.DEFAULTS = a.extend(
{}, a.fn.tooltip.Constructor.DEFAULTS, {
placement: "right",
trigger: "click",
content: "",
template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
}
), b.prototype = a.extend( {}, a.fn.tooltip.Constructor.prototype ), b.prototype.constructor = b, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle(),
c = this.getContent();
a.find( ".popover-title" )[this.options.html ? "html" : "text"](b), a.find( ".popover-content" )[this.options.html ? "string" == typeof c ? "html" : "append" : "text"](c), a.removeClass( "fade top bottom left right in" ), a.find( ".popover-title" ).html() || a.find( ".popover-title" ).hide()
}, b.prototype.hasContent = function() {
return this.getTitle() || this.getContent()
}, b.prototype.getContent = function() {
var a = this.$element,
b = this.options;
return a.attr( "data-content" ) || ("function" == typeof b.content ? b.content.call( a[0] ) : b.content)
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".arrow" )
}, b.prototype.tip = function() {
return this.$tip || (this.$tip = a( this.options.template )), this.$tip
};
var c = a.fn.popover;
a.fn.popover = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.popover" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.popover", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.popover.Constructor = b, a.fn.popover.noConflict = function() {
return a.fn.popover = c, this
}
}(jQuery), + function(a) {
"use strict";
function b(c, d) {
var e, f = a.proxy( this.process, this );
this.$element = a( a( c ).is( "body" ) ? window : c ), this.$body = a( "body" ), this.$scrollElement = this.$element.on( "scroll.bs.scroll-spy.data-api", f ), this.options = a.extend( {}, b.DEFAULTS, d ), this.selector = (this.options.target || (e = a( c ).attr( "href" )) && e.replace( /.*(?=#[^\s]+$)/, "" ) || "") + " .nav li > a", this.offsets = a( [] ), this.targets = a( [] ), this.activeTarget = null, this.refresh(), this.process()
}
b.DEFAULTS = {
offset: 10
}, b.prototype.refresh = function() {
var b = this.$element[0] == window ? "offset" : "position";
this.offsets = a( [] ), this.targets = a( [] ); {
var c = this;
this.$body.find( this.selector ).map(
function() {
var d = a( this ),
e = d.data( "target" ) || d.attr( "href" ),
f = /^#./.test( e ) && a( e );
return f && f.length && f.is( ":visible" ) && [
[f[b]().top + ( ! a.isWindow( c.$scrollElement.get( 0 ) ) && c.$scrollElement.scrollTop()), e]
] || null
}
).sort(
function(a, b) {
return a[0] - b[0]
}
).each(
function() {
c.offsets.push( this[0] ), c.targets.push( this[1] )
}
)
}
}, b.prototype.process = function() {
var a, b = this.$scrollElement.scrollTop() + this.options.offset,
c = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight,
d = c - this.$scrollElement.height(),
e = this.offsets,
f = this.targets,
g = this.activeTarget;
if (b >= d) {
return g != (a = f.last()[0]) && this.activate( a );
}
if (g && b <= e[0]) {
return g != (a = f[0]) && this.activate( a );
}
for (a = e.length; a--;) {
g != f[a] && b >= e[a] && ( ! e[a + 1] || b <= e[a + 1]) && this.activate( f[a] )
}
}, b.prototype.activate = function(b) {
this.activeTarget = b, a( this.selector ).parentsUntil( this.options.target, ".active" ).removeClass( "active" );
var c = this.selector + '[data-target="' + b + '"],' + this.selector + '[href="' + b + '"]',
d = a( c ).parents( "li" ).addClass( "active" );
d.parent( ".dropdown-menu" ).length && (d = d.closest( "li.dropdown" ).addClass( "active" )), d.trigger( "activate.bs.scrollspy" )
};
var c = a.fn.scrollspy;
a.fn.scrollspy = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.scrollspy" ),
f = "object" == typeof c && c;
e || d.data( "bs.scrollspy", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.scrollspy.Constructor = b, a.fn.scrollspy.noConflict = function() {
return a.fn.scrollspy = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="scroll"]' ).each(
function() {
var b = a( this );
b.scrollspy( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b) {
this.element = a( b )
};
b.prototype.show = function() {
var b = this.element,
c = b.closest( "ul:not(.dropdown-menu)" ),
d = b.data( "target" );
if (d || (d = b.attr( "href" ), d = d && d.replace( /.*(?=#[^\s]*$)/, "" )), ! b.parent( "li" ).hasClass( "active" )) {
var e = c.find( ".active:last a" )[0],
f = a.Event(
"show.bs.tab", {
relatedTarget: e
}
);
if (b.trigger( f ), ! f.isDefaultPrevented()) {
var g = a( d );
this.activate( b.parent( "li" ), c ), this.activate(
g, g.parent(), function() {
b.trigger(
{
type: "shown.bs.tab",
relatedTarget: e
}
)
}
)
}
}
}, b.prototype.activate = function(b, c, d) {
function e() {
f.removeClass( "active" ).find( "> .dropdown-menu > .active" ).removeClass( "active" ), b.addClass( "active" ), g ? (b[0].offsetWidth, b.addClass( "in" )) : b.removeClass( "fade" ), b.parent( ".dropdown-menu" ) && b.closest( "li.dropdown" ).addClass( "active" ), d && d()
}
var f = c.find( "> .active" ),
g = d && a.support.transition && f.hasClass( "fade" );
g ? f.one( a.support.transition.end, e ).emulateTransitionEnd( 150 ) : e(), f.removeClass( "in" )
};
var c = a.fn.tab;
a.fn.tab = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tab" );
e || d.data( "bs.tab", e = new b( this ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.tab.Constructor = b, a.fn.tab.noConflict = function() {
return a.fn.tab = c, this
}, a( document ).on(
"click.bs.tab.data-api", '[data-toggle="tab"], [data-toggle="pill"]', function(b) {
b.preventDefault(), a( this ).tab( "show" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.options = a.extend( {}, b.DEFAULTS, d ), this.$window = a( window ).on( "scroll.bs.affix.data-api", a.proxy( this.checkPosition, this ) ).on( "click.bs.affix.data-api", a.proxy( this.checkPositionWithEventLoop, this ) ), this.$element = a( c ), this.affixed = this.unpin = this.pinnedOffset = null, this.checkPosition()
};
b.RESET = "affix affix-top affix-bottom", b.DEFAULTS = {
offset: 0
}, b.prototype.getPinnedOffset = function() {
if (this.pinnedOffset) {
return this.pinnedOffset;
}
this.$element.removeClass( b.RESET ).addClass( "affix" );
var a = this.$window.scrollTop(),
c = this.$element.offset();
return this.pinnedOffset = c.top - a
}, b.prototype.checkPositionWithEventLoop = function() {
setTimeout( a.proxy( this.checkPosition, this ), 1 )
}, b.prototype.checkPosition = function() {
if (this.$element.is( ":visible" )) {
var c = a( document ).height(),
d = this.$window.scrollTop(),
e = this.$element.offset(),
f = this.options.offset,
g = f.top,
h = f.bottom;
"top" == this.affixed && (e.top += d), "object" != typeof f && (h = g = f), "function" == typeof g && (g = f.top( this.$element )), "function" == typeof h && (h = f.bottom( this.$element ));
var i = null != this.unpin && d + this.unpin <= e.top ? ! 1 : null != h && e.top + this.$element.height() >= c - h ? "bottom" : null != g && g >= d ? "top" : ! 1;
if (this.affixed !== i) {
this.unpin && this.$element.css( "top", "" );
var j = "affix" + (i ? "-" + i : ""),
k = a.Event( j + ".bs.affix" );
this.$element.trigger( k ), k.isDefaultPrevented() || (this.affixed = i, this.unpin = "bottom" == i ? this.getPinnedOffset() : null, this.$element.removeClass( b.RESET ).addClass( j ).trigger( a.Event( j.replace( "affix", "affixed" ) ) ), "bottom" == i && this.$element.offset(
{
top: c - h - this.$element.height()
}
))
}
}
};
var c = a.fn.affix;
a.fn.affix = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.affix" ),
f = "object" == typeof c && c;
e || d.data( "bs.affix", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.affix.Constructor = b, a.fn.affix.noConflict = function() {
return a.fn.affix = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="affix"]' ).each(
function() {
var b = a( this ),
c = b.data();
c.offset = c.offset || {}, c.offsetBottom && (c.offset.bottom = c.offsetBottom), c.offsetTop && (c.offset.top = c.offsetTop), b.affix( c )
}
)
}
)
}(jQuery);
home/xbodynamge/lebauwcentre/wp-content/themes/onepress/assets/js/bootstrap.js 0000644 00000365170 15113366273 0024046 0 ustar 00 /*!
* Bootstrap v4.0.0-alpha.6 (https://getbootstrap.com)
* Copyright 2011-2017 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if (typeof jQuery === 'undefined') {
throw new Error('Bootstrap\'s JavaScript requires jQuery. jQuery must be included before Bootstrap\'s JavaScript.')
}
+function ($) {
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] >= 4)) {
throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0')
}
}(jQuery);
+function () {
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): util.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Util = function ($) {
/**
* ------------------------------------------------------------------------
* Private TransitionEnd Helpers
* ------------------------------------------------------------------------
*/
var transition = false;
var MAX_UID = 1000000;
var TransitionEndEvent = {
WebkitTransition: 'webkitTransitionEnd',
MozTransition: 'transitionend',
OTransition: 'oTransitionEnd otransitionend',
transition: 'transitionend'
};
// shoutout AngusCroll (https://goo.gl/pxwQGp)
function toType(obj) {
return {}.toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase();
}
function isElement(obj) {
return (obj[0] || obj).nodeType;
}
function getSpecialTransitionEndEvent() {
return {
bindType: transition.end,
delegateType: transition.end,
handle: function handle(event) {
if ($(event.target).is(this)) {
return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params
}
return undefined;
}
};
}
function transitionEndTest() {
if (window.QUnit) {
return false;
}
var el = document.createElement('bootstrap');
for (var name in TransitionEndEvent) {
if (el.style[name] !== undefined) {
return {
end: TransitionEndEvent[name]
};
}
}
return false;
}
function transitionEndEmulator(duration) {
var _this = this;
var called = false;
$(this).one(Util.TRANSITION_END, function () {
called = true;
});
setTimeout(function () {
if (!called) {
Util.triggerTransitionEnd(_this);
}
}, duration);
return this;
}
function setTransitionEndSupport() {
transition = transitionEndTest();
$.fn.emulateTransitionEnd = transitionEndEmulator;
if (Util.supportsTransitionEnd()) {
$.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent();
}
}
/**
* --------------------------------------------------------------------------
* Public Util Api
* --------------------------------------------------------------------------
*/
var Util = {
TRANSITION_END: 'bsTransitionEnd',
getUID: function getUID(prefix) {
do {
// eslint-disable-next-line no-bitwise
prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here
} while (document.getElementById(prefix));
return prefix;
},
getSelectorFromElement: function getSelectorFromElement(element) {
var selector = element.getAttribute('data-target');
if (!selector) {
selector = element.getAttribute('href') || '';
selector = /^#[a-z]/i.test(selector) ? selector : null;
}
return selector;
},
reflow: function reflow(element) {
return element.offsetHeight;
},
triggerTransitionEnd: function triggerTransitionEnd(element) {
$(element).trigger(transition.end);
},
supportsTransitionEnd: function supportsTransitionEnd() {
return Boolean(transition);
},
typeCheckConfig: function typeCheckConfig(componentName, config, configTypes) {
for (var property in configTypes) {
if (configTypes.hasOwnProperty(property)) {
var expectedTypes = configTypes[property];
var value = config[property];
var valueType = value && isElement(value) ? 'element' : toType(value);
if (!new RegExp(expectedTypes).test(valueType)) {
throw new Error(componentName.toUpperCase() + ': ' + ('Option "' + property + '" provided type "' + valueType + '" ') + ('but expected type "' + expectedTypes + '".'));
}
}
}
}
};
setTransitionEndSupport();
return Util;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): alert.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Alert = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'alert';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.alert';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 150;
var Selector = {
DISMISS: '[data-dismiss="alert"]'
};
var Event = {
CLOSE: 'close' + EVENT_KEY,
CLOSED: 'closed' + EVENT_KEY,
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
ALERT: 'alert',
FADE: 'fade',
SHOW: 'show'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Alert = function () {
function Alert(element) {
_classCallCheck(this, Alert);
this._element = element;
}
// getters
// public
Alert.prototype.close = function close(element) {
element = element || this._element;
var rootElement = this._getRootElement(element);
var customEvent = this._triggerCloseEvent(rootElement);
if (customEvent.isDefaultPrevented()) {
return;
}
this._removeElement(rootElement);
};
Alert.prototype.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
this._element = null;
};
// private
Alert.prototype._getRootElement = function _getRootElement(element) {
var selector = Util.getSelectorFromElement(element);
var parent = false;
if (selector) {
parent = $(selector)[0];
}
if (!parent) {
parent = $(element).closest('.' + ClassName.ALERT)[0];
}
return parent;
};
Alert.prototype._triggerCloseEvent = function _triggerCloseEvent(element) {
var closeEvent = $.Event(Event.CLOSE);
$(element).trigger(closeEvent);
return closeEvent;
};
Alert.prototype._removeElement = function _removeElement(element) {
var _this2 = this;
$(element).removeClass(ClassName.SHOW);
if (!Util.supportsTransitionEnd() || !$(element).hasClass(ClassName.FADE)) {
this._destroyElement(element);
return;
}
$(element).one(Util.TRANSITION_END, function (event) {
return _this2._destroyElement(element, event);
}).emulateTransitionEnd(TRANSITION_DURATION);
};
Alert.prototype._destroyElement = function _destroyElement(element) {
$(element).detach().trigger(Event.CLOSED).remove();
};
// static
Alert._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var $element = $(this);
var data = $element.data(DATA_KEY);
if (!data) {
data = new Alert(this);
$element.data(DATA_KEY, data);
}
if (config === 'close') {
data[config](this);
}
});
};
Alert._handleDismiss = function _handleDismiss(alertInstance) {
return function (event) {
if (event) {
event.preventDefault();
}
alertInstance.close(this);
};
};
_createClass(Alert, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}]);
return Alert;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(document).on(Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert()));
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Alert._jQueryInterface;
$.fn[NAME].Constructor = Alert;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Alert._jQueryInterface;
};
return Alert;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): button.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Button = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'button';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.button';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var ClassName = {
ACTIVE: 'active',
BUTTON: 'btn',
FOCUS: 'focus'
};
var Selector = {
DATA_TOGGLE_CARROT: '[data-toggle^="button"]',
DATA_TOGGLE: '[data-toggle="buttons"]',
INPUT: 'input',
ACTIVE: '.active',
BUTTON: '.btn'
};
var Event = {
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY,
FOCUS_BLUR_DATA_API: 'focus' + EVENT_KEY + DATA_API_KEY + ' ' + ('blur' + EVENT_KEY + DATA_API_KEY)
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Button = function () {
function Button(element) {
_classCallCheck(this, Button);
this._element = element;
}
// getters
// public
Button.prototype.toggle = function toggle() {
var triggerChangeEvent = true;
var rootElement = $(this._element).closest(Selector.DATA_TOGGLE)[0];
if (rootElement) {
var input = $(this._element).find(Selector.INPUT)[0];
if (input) {
if (input.type === 'radio') {
if (input.checked && $(this._element).hasClass(ClassName.ACTIVE)) {
triggerChangeEvent = false;
} else {
var activeElement = $(rootElement).find(Selector.ACTIVE)[0];
if (activeElement) {
$(activeElement).removeClass(ClassName.ACTIVE);
}
}
}
if (triggerChangeEvent) {
input.checked = !$(this._element).hasClass(ClassName.ACTIVE);
$(input).trigger('change');
}
input.focus();
}
}
this._element.setAttribute('aria-pressed', !$(this._element).hasClass(ClassName.ACTIVE));
if (triggerChangeEvent) {
$(this._element).toggleClass(ClassName.ACTIVE);
}
};
Button.prototype.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
this._element = null;
};
// static
Button._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
if (!data) {
data = new Button(this);
$(this).data(DATA_KEY, data);
}
if (config === 'toggle') {
data[config]();
}
});
};
_createClass(Button, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}]);
return Button;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE_CARROT, function (event) {
event.preventDefault();
var button = event.target;
if (!$(button).hasClass(ClassName.BUTTON)) {
button = $(button).closest(Selector.BUTTON);
}
Button._jQueryInterface.call($(button), 'toggle');
}).on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, function (event) {
var button = $(event.target).closest(Selector.BUTTON)[0];
$(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type));
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Button._jQueryInterface;
$.fn[NAME].Constructor = Button;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Button._jQueryInterface;
};
return Button;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): carousel.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Carousel = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'carousel';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.carousel';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 600;
var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key
var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key
var Default = {
interval: 5000,
keyboard: true,
slide: false,
pause: 'hover',
wrap: true
};
var DefaultType = {
interval: '(number|boolean)',
keyboard: 'boolean',
slide: '(boolean|string)',
pause: '(string|boolean)',
wrap: 'boolean'
};
var Direction = {
NEXT: 'next',
PREV: 'prev',
LEFT: 'left',
RIGHT: 'right'
};
var Event = {
SLIDE: 'slide' + EVENT_KEY,
SLID: 'slid' + EVENT_KEY,
KEYDOWN: 'keydown' + EVENT_KEY,
MOUSEENTER: 'mouseenter' + EVENT_KEY,
MOUSELEAVE: 'mouseleave' + EVENT_KEY,
LOAD_DATA_API: 'load' + EVENT_KEY + DATA_API_KEY,
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
CAROUSEL: 'carousel',
ACTIVE: 'active',
SLIDE: 'slide',
RIGHT: 'carousel-item-right',
LEFT: 'carousel-item-left',
NEXT: 'carousel-item-next',
PREV: 'carousel-item-prev',
ITEM: 'carousel-item'
};
var Selector = {
ACTIVE: '.active',
ACTIVE_ITEM: '.active.carousel-item',
ITEM: '.carousel-item',
NEXT_PREV: '.carousel-item-next, .carousel-item-prev',
INDICATORS: '.carousel-indicators',
DATA_SLIDE: '[data-slide], [data-slide-to]',
DATA_RIDE: '[data-ride="carousel"]'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Carousel = function () {
function Carousel(element, config) {
_classCallCheck(this, Carousel);
this._items = null;
this._interval = null;
this._activeElement = null;
this._isPaused = false;
this._isSliding = false;
this._config = this._getConfig(config);
this._element = $(element)[0];
this._indicatorsElement = $(this._element).find(Selector.INDICATORS)[0];
this._addEventListeners();
}
// getters
// public
Carousel.prototype.next = function next() {
if (this._isSliding) {
throw new Error('Carousel is sliding');
}
this._slide(Direction.NEXT);
};
Carousel.prototype.nextWhenVisible = function nextWhenVisible() {
// Don't call next when the page isn't visible
if (!document.hidden) {
this.next();
}
};
Carousel.prototype.prev = function prev() {
if (this._isSliding) {
throw new Error('Carousel is sliding');
}
this._slide(Direction.PREVIOUS);
};
Carousel.prototype.pause = function pause(event) {
if (!event) {
this._isPaused = true;
}
if ($(this._element).find(Selector.NEXT_PREV)[0] && Util.supportsTransitionEnd()) {
Util.triggerTransitionEnd(this._element);
this.cycle(true);
}
clearInterval(this._interval);
this._interval = null;
};
Carousel.prototype.cycle = function cycle(event) {
if (!event) {
this._isPaused = false;
}
if (this._interval) {
clearInterval(this._interval);
this._interval = null;
}
if (this._config.interval && !this._isPaused) {
this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval);
}
};
Carousel.prototype.to = function to(index) {
var _this3 = this;
this._activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0];
var activeIndex = this._getItemIndex(this._activeElement);
if (index > this._items.length - 1 || index < 0) {
return;
}
if (this._isSliding) {
$(this._element).one(Event.SLID, function () {
return _this3.to(index);
});
return;
}
if (activeIndex === index) {
this.pause();
this.cycle();
return;
}
var direction = index > activeIndex ? Direction.NEXT : Direction.PREVIOUS;
this._slide(direction, this._items[index]);
};
Carousel.prototype.dispose = function dispose() {
$(this._element).off(EVENT_KEY);
$.removeData(this._element, DATA_KEY);
this._items = null;
this._config = null;
this._element = null;
this._interval = null;
this._isPaused = null;
this._isSliding = null;
this._activeElement = null;
this._indicatorsElement = null;
};
// private
Carousel.prototype._getConfig = function _getConfig(config) {
config = $.extend({}, Default, config);
Util.typeCheckConfig(NAME, config, DefaultType);
return config;
};
Carousel.prototype._addEventListeners = function _addEventListeners() {
var _this4 = this;
if (this._config.keyboard) {
$(this._element).on(Event.KEYDOWN, function (event) {
return _this4._keydown(event);
});
}
if (this._config.pause === 'hover' && !('ontouchstart' in document.documentElement)) {
$(this._element).on(Event.MOUSEENTER, function (event) {
return _this4.pause(event);
}).on(Event.MOUSELEAVE, function (event) {
return _this4.cycle(event);
});
}
};
Carousel.prototype._keydown = function _keydown(event) {
if (/input|textarea/i.test(event.target.tagName)) {
return;
}
switch (event.which) {
case ARROW_LEFT_KEYCODE:
event.preventDefault();
this.prev();
break;
case ARROW_RIGHT_KEYCODE:
event.preventDefault();
this.next();
break;
default:
return;
}
};
Carousel.prototype._getItemIndex = function _getItemIndex(element) {
this._items = $.makeArray($(element).parent().find(Selector.ITEM));
return this._items.indexOf(element);
};
Carousel.prototype._getItemByDirection = function _getItemByDirection(direction, activeElement) {
var isNextDirection = direction === Direction.NEXT;
var isPrevDirection = direction === Direction.PREVIOUS;
var activeIndex = this._getItemIndex(activeElement);
var lastItemIndex = this._items.length - 1;
var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex;
if (isGoingToWrap && !this._config.wrap) {
return activeElement;
}
var delta = direction === Direction.PREVIOUS ? -1 : 1;
var itemIndex = (activeIndex + delta) % this._items.length;
return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex];
};
Carousel.prototype._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) {
var slideEvent = $.Event(Event.SLIDE, {
relatedTarget: relatedTarget,
direction: eventDirectionName
});
$(this._element).trigger(slideEvent);
return slideEvent;
};
Carousel.prototype._setActiveIndicatorElement = function _setActiveIndicatorElement(element) {
if (this._indicatorsElement) {
$(this._indicatorsElement).find(Selector.ACTIVE).removeClass(ClassName.ACTIVE);
var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)];
if (nextIndicator) {
$(nextIndicator).addClass(ClassName.ACTIVE);
}
}
};
Carousel.prototype._slide = function _slide(direction, element) {
var _this5 = this;
var activeElement = $(this._element).find(Selector.ACTIVE_ITEM)[0];
var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement);
var isCycling = Boolean(this._interval);
var directionalClassName = void 0;
var orderClassName = void 0;
var eventDirectionName = void 0;
if (direction === Direction.NEXT) {
directionalClassName = ClassName.LEFT;
orderClassName = ClassName.NEXT;
eventDirectionName = Direction.LEFT;
} else {
directionalClassName = ClassName.RIGHT;
orderClassName = ClassName.PREV;
eventDirectionName = Direction.RIGHT;
}
if (nextElement && $(nextElement).hasClass(ClassName.ACTIVE)) {
this._isSliding = false;
return;
}
var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName);
if (slideEvent.isDefaultPrevented()) {
return;
}
if (!activeElement || !nextElement) {
// some weirdness is happening, so we bail
return;
}
this._isSliding = true;
if (isCycling) {
this.pause();
}
this._setActiveIndicatorElement(nextElement);
var slidEvent = $.Event(Event.SLID, {
relatedTarget: nextElement,
direction: eventDirectionName
});
if (Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.SLIDE)) {
$(nextElement).addClass(orderClassName);
Util.reflow(nextElement);
$(activeElement).addClass(directionalClassName);
$(nextElement).addClass(directionalClassName);
$(activeElement).one(Util.TRANSITION_END, function () {
$(nextElement).removeClass(directionalClassName + ' ' + orderClassName).addClass(ClassName.ACTIVE);
$(activeElement).removeClass(ClassName.ACTIVE + ' ' + orderClassName + ' ' + directionalClassName);
_this5._isSliding = false;
setTimeout(function () {
return $(_this5._element).trigger(slidEvent);
}, 0);
}).emulateTransitionEnd(TRANSITION_DURATION);
} else {
$(activeElement).removeClass(ClassName.ACTIVE);
$(nextElement).addClass(ClassName.ACTIVE);
this._isSliding = false;
$(this._element).trigger(slidEvent);
}
if (isCycling) {
this.cycle();
}
};
// static
Carousel._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
var _config = $.extend({}, Default, $(this).data());
if ((typeof config === 'undefined' ? 'undefined' : _typeof(config)) === 'object') {
$.extend(_config, config);
}
var action = typeof config === 'string' ? config : _config.slide;
if (!data) {
data = new Carousel(this, _config);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'number') {
data.to(config);
} else if (typeof action === 'string') {
if (data[action] === undefined) {
throw new Error('No method named "' + action + '"');
}
data[action]();
} else if (_config.interval) {
data.pause();
data.cycle();
}
});
};
Carousel._dataApiClickHandler = function _dataApiClickHandler(event) {
var selector = Util.getSelectorFromElement(this);
if (!selector) {
return;
}
var target = $(selector)[0];
if (!target || !$(target).hasClass(ClassName.CAROUSEL)) {
return;
}
var config = $.extend({}, $(target).data(), $(this).data());
var slideIndex = this.getAttribute('data-slide-to');
if (slideIndex) {
config.interval = false;
}
Carousel._jQueryInterface.call($(target), config);
if (slideIndex) {
$(target).data(DATA_KEY).to(slideIndex);
}
event.preventDefault();
};
_createClass(Carousel, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}, {
key: 'Default',
get: function get() {
return Default;
}
}]);
return Carousel;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(document).on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler);
$(window).on(Event.LOAD_DATA_API, function () {
$(Selector.DATA_RIDE).each(function () {
var $carousel = $(this);
Carousel._jQueryInterface.call($carousel, $carousel.data());
});
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Carousel._jQueryInterface;
$.fn[NAME].Constructor = Carousel;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Carousel._jQueryInterface;
};
return Carousel;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): collapse.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Collapse = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'collapse';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.collapse';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 600;
var Default = {
toggle: true,
parent: ''
};
var DefaultType = {
toggle: 'boolean',
parent: 'string'
};
var Event = {
SHOW: 'show' + EVENT_KEY,
SHOWN: 'shown' + EVENT_KEY,
HIDE: 'hide' + EVENT_KEY,
HIDDEN: 'hidden' + EVENT_KEY,
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
SHOW: 'show',
COLLAPSE: 'collapse',
COLLAPSING: 'collapsing',
COLLAPSED: 'collapsed'
};
var Dimension = {
WIDTH: 'width',
HEIGHT: 'height'
};
var Selector = {
ACTIVES: '.card > .show, .card > .collapsing',
DATA_TOGGLE: '[data-toggle="collapse"]'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Collapse = function () {
function Collapse(element, config) {
_classCallCheck(this, Collapse);
this._isTransitioning = false;
this._element = element;
this._config = this._getConfig(config);
this._triggerArray = $.makeArray($('[data-toggle="collapse"][href="#' + element.id + '"],' + ('[data-toggle="collapse"][data-target="#' + element.id + '"]')));
this._parent = this._config.parent ? this._getParent() : null;
if (!this._config.parent) {
this._addAriaAndCollapsedClass(this._element, this._triggerArray);
}
if (this._config.toggle) {
this.toggle();
}
}
// getters
// public
Collapse.prototype.toggle = function toggle() {
if ($(this._element).hasClass(ClassName.SHOW)) {
this.hide();
} else {
this.show();
}
};
Collapse.prototype.show = function show() {
var _this6 = this;
if (this._isTransitioning) {
throw new Error('Collapse is transitioning');
}
if ($(this._element).hasClass(ClassName.SHOW)) {
return;
}
var actives = void 0;
var activesData = void 0;
if (this._parent) {
actives = $.makeArray($(this._parent).find(Selector.ACTIVES));
if (!actives.length) {
actives = null;
}
}
if (actives) {
activesData = $(actives).data(DATA_KEY);
if (activesData && activesData._isTransitioning) {
return;
}
}
var startEvent = $.Event(Event.SHOW);
$(this._element).trigger(startEvent);
if (startEvent.isDefaultPrevented()) {
return;
}
if (actives) {
Collapse._jQueryInterface.call($(actives), 'hide');
if (!activesData) {
$(actives).data(DATA_KEY, null);
}
}
var dimension = this._getDimension();
$(this._element).removeClass(ClassName.COLLAPSE).addClass(ClassName.COLLAPSING);
this._element.style[dimension] = 0;
this._element.setAttribute('aria-expanded', true);
if (this._triggerArray.length) {
$(this._triggerArray).removeClass(ClassName.COLLAPSED).attr('aria-expanded', true);
}
this.setTransitioning(true);
var complete = function complete() {
$(_this6._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).addClass(ClassName.SHOW);
_this6._element.style[dimension] = '';
_this6.setTransitioning(false);
$(_this6._element).trigger(Event.SHOWN);
};
if (!Util.supportsTransitionEnd()) {
complete();
return;
}
var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);
var scrollSize = 'scroll' + capitalizedDimension;
$(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
this._element.style[dimension] = this._element[scrollSize] + 'px';
};
Collapse.prototype.hide = function hide() {
var _this7 = this;
if (this._isTransitioning) {
throw new Error('Collapse is transitioning');
}
if (!$(this._element).hasClass(ClassName.SHOW)) {
return;
}
var startEvent = $.Event(Event.HIDE);
$(this._element).trigger(startEvent);
if (startEvent.isDefaultPrevented()) {
return;
}
var dimension = this._getDimension();
var offsetDimension = dimension === Dimension.WIDTH ? 'offsetWidth' : 'offsetHeight';
this._element.style[dimension] = this._element[offsetDimension] + 'px';
Util.reflow(this._element);
$(this._element).addClass(ClassName.COLLAPSING).removeClass(ClassName.COLLAPSE).removeClass(ClassName.SHOW);
this._element.setAttribute('aria-expanded', false);
if (this._triggerArray.length) {
$(this._triggerArray).addClass(ClassName.COLLAPSED).attr('aria-expanded', false);
}
this.setTransitioning(true);
var complete = function complete() {
_this7.setTransitioning(false);
$(_this7._element).removeClass(ClassName.COLLAPSING).addClass(ClassName.COLLAPSE).trigger(Event.HIDDEN);
};
this._element.style[dimension] = '';
if (!Util.supportsTransitionEnd()) {
complete();
return;
}
$(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
};
Collapse.prototype.setTransitioning = function setTransitioning(isTransitioning) {
this._isTransitioning = isTransitioning;
};
Collapse.prototype.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
this._config = null;
this._parent = null;
this._element = null;
this._triggerArray = null;
this._isTransitioning = null;
};
// private
Collapse.prototype._getConfig = function _getConfig(config) {
config = $.extend({}, Default, config);
config.toggle = Boolean(config.toggle); // coerce string values
Util.typeCheckConfig(NAME, config, DefaultType);
return config;
};
Collapse.prototype._getDimension = function _getDimension() {
var hasWidth = $(this._element).hasClass(Dimension.WIDTH);
return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT;
};
Collapse.prototype._getParent = function _getParent() {
var _this8 = this;
var parent = $(this._config.parent)[0];
var selector = '[data-toggle="collapse"][data-parent="' + this._config.parent + '"]';
$(parent).find(selector).each(function (i, element) {
_this8._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]);
});
return parent;
};
Collapse.prototype._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) {
if (element) {
var isOpen = $(element).hasClass(ClassName.SHOW);
element.setAttribute('aria-expanded', isOpen);
if (triggerArray.length) {
$(triggerArray).toggleClass(ClassName.COLLAPSED, !isOpen).attr('aria-expanded', isOpen);
}
}
};
// static
Collapse._getTargetFromElement = function _getTargetFromElement(element) {
var selector = Util.getSelectorFromElement(element);
return selector ? $(selector)[0] : null;
};
Collapse._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var $this = $(this);
var data = $this.data(DATA_KEY);
var _config = $.extend({}, Default, $this.data(), (typeof config === 'undefined' ? 'undefined' : _typeof(config)) === 'object' && config);
if (!data && _config.toggle && /show|hide/.test(config)) {
_config.toggle = false;
}
if (!data) {
data = new Collapse(this, _config);
$this.data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (data[config] === undefined) {
throw new Error('No method named "' + config + '"');
}
data[config]();
}
});
};
_createClass(Collapse, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}, {
key: 'Default',
get: function get() {
return Default;
}
}]);
return Collapse;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
event.preventDefault();
var target = Collapse._getTargetFromElement(this);
var data = $(target).data(DATA_KEY);
var config = data ? 'toggle' : $(this).data();
Collapse._jQueryInterface.call($(target), config);
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Collapse._jQueryInterface;
$.fn[NAME].Constructor = Collapse;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Collapse._jQueryInterface;
};
return Collapse;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): dropdown.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Dropdown = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'dropdown';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.dropdown';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key
var ARROW_UP_KEYCODE = 38; // KeyboardEvent.which value for up arrow key
var ARROW_DOWN_KEYCODE = 40; // KeyboardEvent.which value for down arrow key
var RIGHT_MOUSE_BUTTON_WHICH = 3; // MouseEvent.which value for the right button (assuming a right-handed mouse)
var Event = {
HIDE: 'hide' + EVENT_KEY,
HIDDEN: 'hidden' + EVENT_KEY,
SHOW: 'show' + EVENT_KEY,
SHOWN: 'shown' + EVENT_KEY,
CLICK: 'click' + EVENT_KEY,
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY,
FOCUSIN_DATA_API: 'focusin' + EVENT_KEY + DATA_API_KEY,
KEYDOWN_DATA_API: 'keydown' + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
BACKDROP: 'dropdown-backdrop',
DISABLED: 'disabled',
SHOW: 'show'
};
var Selector = {
BACKDROP: '.dropdown-backdrop',
DATA_TOGGLE: '[data-toggle="dropdown"]',
FORM_CHILD: '.dropdown form',
ROLE_MENU: '[role="menu"]',
ROLE_LISTBOX: '[role="listbox"]',
NAVBAR_NAV: '.navbar-nav',
VISIBLE_ITEMS: '[role="menu"] li:not(.disabled) a, ' + '[role="listbox"] li:not(.disabled) a'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Dropdown = function () {
function Dropdown(element) {
_classCallCheck(this, Dropdown);
this._element = element;
this._addEventListeners();
}
// getters
// public
Dropdown.prototype.toggle = function toggle() {
if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {
return false;
}
var parent = Dropdown._getParentFromElement(this);
var isActive = $(parent).hasClass(ClassName.SHOW);
Dropdown._clearMenus();
if (isActive) {
return false;
}
if ('ontouchstart' in document.documentElement && !$(parent).closest(Selector.NAVBAR_NAV).length) {
// if mobile we use a backdrop because click events don't delegate
var dropdown = document.createElement('div');
dropdown.className = ClassName.BACKDROP;
$(dropdown).insertBefore(this);
$(dropdown).on('click', Dropdown._clearMenus);
}
var relatedTarget = {
relatedTarget: this
};
var showEvent = $.Event(Event.SHOW, relatedTarget);
$(parent).trigger(showEvent);
if (showEvent.isDefaultPrevented()) {
return false;
}
this.focus();
this.setAttribute('aria-expanded', true);
$(parent).toggleClass(ClassName.SHOW);
$(parent).trigger($.Event(Event.SHOWN, relatedTarget));
return false;
};
Dropdown.prototype.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
$(this._element).off(EVENT_KEY);
this._element = null;
};
// private
Dropdown.prototype._addEventListeners = function _addEventListeners() {
$(this._element).on(Event.CLICK, this.toggle);
};
// static
Dropdown._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
if (!data) {
data = new Dropdown(this);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (data[config] === undefined) {
throw new Error('No method named "' + config + '"');
}
data[config].call(this);
}
});
};
Dropdown._clearMenus = function _clearMenus(event) {
if (event && event.which === RIGHT_MOUSE_BUTTON_WHICH) {
return;
}
var backdrop = $(Selector.BACKDROP)[0];
if (backdrop) {
backdrop.parentNode.removeChild(backdrop);
}
var toggles = $.makeArray($(Selector.DATA_TOGGLE));
for (var i = 0; i < toggles.length; i++) {
var parent = Dropdown._getParentFromElement(toggles[i]);
var relatedTarget = {
relatedTarget: toggles[i]
};
if (!$(parent).hasClass(ClassName.SHOW)) {
continue;
}
if (event && (event.type === 'click' && /input|textarea/i.test(event.target.tagName) || event.type === 'focusin') && $.contains(parent, event.target)) {
continue;
}
var hideEvent = $.Event(Event.HIDE, relatedTarget);
$(parent).trigger(hideEvent);
if (hideEvent.isDefaultPrevented()) {
continue;
}
toggles[i].setAttribute('aria-expanded', 'false');
$(parent).removeClass(ClassName.SHOW).trigger($.Event(Event.HIDDEN, relatedTarget));
}
};
Dropdown._getParentFromElement = function _getParentFromElement(element) {
var parent = void 0;
var selector = Util.getSelectorFromElement(element);
if (selector) {
parent = $(selector)[0];
}
return parent || element.parentNode;
};
Dropdown._dataApiKeydownHandler = function _dataApiKeydownHandler(event) {
if (!/(38|40|27|32)/.test(event.which) || /input|textarea/i.test(event.target.tagName)) {
return;
}
event.preventDefault();
event.stopPropagation();
if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {
return;
}
var parent = Dropdown._getParentFromElement(this);
var isActive = $(parent).hasClass(ClassName.SHOW);
if (!isActive && event.which !== ESCAPE_KEYCODE || isActive && event.which === ESCAPE_KEYCODE) {
if (event.which === ESCAPE_KEYCODE) {
var toggle = $(parent).find(Selector.DATA_TOGGLE)[0];
$(toggle).trigger('focus');
}
$(this).trigger('click');
return;
}
var items = $(parent).find(Selector.VISIBLE_ITEMS).get();
if (!items.length) {
return;
}
var index = items.indexOf(event.target);
if (event.which === ARROW_UP_KEYCODE && index > 0) {
// up
index--;
}
if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) {
// down
index++;
}
if (index < 0) {
index = 0;
}
items[index].focus();
};
_createClass(Dropdown, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}]);
return Dropdown;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(document).on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler).on(Event.KEYDOWN_DATA_API, Selector.ROLE_MENU, Dropdown._dataApiKeydownHandler).on(Event.KEYDOWN_DATA_API, Selector.ROLE_LISTBOX, Dropdown._dataApiKeydownHandler).on(Event.CLICK_DATA_API + ' ' + Event.FOCUSIN_DATA_API, Dropdown._clearMenus).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, Dropdown.prototype.toggle).on(Event.CLICK_DATA_API, Selector.FORM_CHILD, function (e) {
e.stopPropagation();
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Dropdown._jQueryInterface;
$.fn[NAME].Constructor = Dropdown;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Dropdown._jQueryInterface;
};
return Dropdown;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): modal.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Modal = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'modal';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.modal';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 300;
var BACKDROP_TRANSITION_DURATION = 150;
var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key
var Default = {
backdrop: true,
keyboard: true,
focus: true,
show: true
};
var DefaultType = {
backdrop: '(boolean|string)',
keyboard: 'boolean',
focus: 'boolean',
show: 'boolean'
};
var Event = {
HIDE: 'hide' + EVENT_KEY,
HIDDEN: 'hidden' + EVENT_KEY,
SHOW: 'show' + EVENT_KEY,
SHOWN: 'shown' + EVENT_KEY,
FOCUSIN: 'focusin' + EVENT_KEY,
RESIZE: 'resize' + EVENT_KEY,
CLICK_DISMISS: 'click.dismiss' + EVENT_KEY,
KEYDOWN_DISMISS: 'keydown.dismiss' + EVENT_KEY,
MOUSEUP_DISMISS: 'mouseup.dismiss' + EVENT_KEY,
MOUSEDOWN_DISMISS: 'mousedown.dismiss' + EVENT_KEY,
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
SCROLLBAR_MEASURER: 'modal-scrollbar-measure',
BACKDROP: 'modal-backdrop',
OPEN: 'modal-open',
FADE: 'fade',
SHOW: 'show'
};
var Selector = {
DIALOG: '.modal-dialog',
DATA_TOGGLE: '[data-toggle="modal"]',
DATA_DISMISS: '[data-dismiss="modal"]',
FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Modal = function () {
function Modal(element, config) {
_classCallCheck(this, Modal);
this._config = this._getConfig(config);
this._element = element;
this._dialog = $(element).find(Selector.DIALOG)[0];
this._backdrop = null;
this._isShown = false;
this._isBodyOverflowing = false;
this._ignoreBackdropClick = false;
this._isTransitioning = false;
this._originalBodyPadding = 0;
this._scrollbarWidth = 0;
}
// getters
// public
Modal.prototype.toggle = function toggle(relatedTarget) {
return this._isShown ? this.hide() : this.show(relatedTarget);
};
Modal.prototype.show = function show(relatedTarget) {
var _this9 = this;
if (this._isTransitioning) {
throw new Error('Modal is transitioning');
}
if (Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE)) {
this._isTransitioning = true;
}
var showEvent = $.Event(Event.SHOW, {
relatedTarget: relatedTarget
});
$(this._element).trigger(showEvent);
if (this._isShown || showEvent.isDefaultPrevented()) {
return;
}
this._isShown = true;
this._checkScrollbar();
this._setScrollbar();
$(document.body).addClass(ClassName.OPEN);
this._setEscapeEvent();
this._setResizeEvent();
$(this._element).on(Event.CLICK_DISMISS, Selector.DATA_DISMISS, function (event) {
return _this9.hide(event);
});
$(this._dialog).on(Event.MOUSEDOWN_DISMISS, function () {
$(_this9._element).one(Event.MOUSEUP_DISMISS, function (event) {
if ($(event.target).is(_this9._element)) {
_this9._ignoreBackdropClick = true;
}
});
});
this._showBackdrop(function () {
return _this9._showElement(relatedTarget);
});
};
Modal.prototype.hide = function hide(event) {
var _this10 = this;
if (event) {
event.preventDefault();
}
if (this._isTransitioning) {
throw new Error('Modal is transitioning');
}
var transition = Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE);
if (transition) {
this._isTransitioning = true;
}
var hideEvent = $.Event(Event.HIDE);
$(this._element).trigger(hideEvent);
if (!this._isShown || hideEvent.isDefaultPrevented()) {
return;
}
this._isShown = false;
this._setEscapeEvent();
this._setResizeEvent();
$(document).off(Event.FOCUSIN);
$(this._element).removeClass(ClassName.SHOW);
$(this._element).off(Event.CLICK_DISMISS);
$(this._dialog).off(Event.MOUSEDOWN_DISMISS);
if (transition) {
$(this._element).one(Util.TRANSITION_END, function (event) {
return _this10._hideModal(event);
}).emulateTransitionEnd(TRANSITION_DURATION);
} else {
this._hideModal();
}
};
Modal.prototype.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
$(window, document, this._element, this._backdrop).off(EVENT_KEY);
this._config = null;
this._element = null;
this._dialog = null;
this._backdrop = null;
this._isShown = null;
this._isBodyOverflowing = null;
this._ignoreBackdropClick = null;
this._originalBodyPadding = null;
this._scrollbarWidth = null;
};
// private
Modal.prototype._getConfig = function _getConfig(config) {
config = $.extend({}, Default, config);
Util.typeCheckConfig(NAME, config, DefaultType);
return config;
};
Modal.prototype._showElement = function _showElement(relatedTarget) {
var _this11 = this;
var transition = Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE);
if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {
// don't move modals dom position
document.body.appendChild(this._element);
}
this._element.style.display = 'block';
this._element.removeAttribute('aria-hidden');
this._element.scrollTop = 0;
if (transition) {
Util.reflow(this._element);
}
$(this._element).addClass(ClassName.SHOW);
if (this._config.focus) {
this._enforceFocus();
}
var shownEvent = $.Event(Event.SHOWN, {
relatedTarget: relatedTarget
});
var transitionComplete = function transitionComplete() {
if (_this11._config.focus) {
_this11._element.focus();
}
_this11._isTransitioning = false;
$(_this11._element).trigger(shownEvent);
};
if (transition) {
$(this._dialog).one(Util.TRANSITION_END, transitionComplete).emulateTransitionEnd(TRANSITION_DURATION);
} else {
transitionComplete();
}
};
Modal.prototype._enforceFocus = function _enforceFocus() {
var _this12 = this;
$(document).off(Event.FOCUSIN) // guard against infinite focus loop
.on(Event.FOCUSIN, function (event) {
if (document !== event.target && _this12._element !== event.target && !$(_this12._element).has(event.target).length) {
_this12._element.focus();
}
});
};
Modal.prototype._setEscapeEvent = function _setEscapeEvent() {
var _this13 = this;
if (this._isShown && this._config.keyboard) {
$(this._element).on(Event.KEYDOWN_DISMISS, function (event) {
if (event.which === ESCAPE_KEYCODE) {
_this13.hide();
}
});
} else if (!this._isShown) {
$(this._element).off(Event.KEYDOWN_DISMISS);
}
};
Modal.prototype._setResizeEvent = function _setResizeEvent() {
var _this14 = this;
if (this._isShown) {
$(window).on(Event.RESIZE, function (event) {
return _this14._handleUpdate(event);
});
} else {
$(window).off(Event.RESIZE);
}
};
Modal.prototype._hideModal = function _hideModal() {
var _this15 = this;
this._element.style.display = 'none';
this._element.setAttribute('aria-hidden', 'true');
this._isTransitioning = false;
this._showBackdrop(function () {
$(document.body).removeClass(ClassName.OPEN);
_this15._resetAdjustments();
_this15._resetScrollbar();
$(_this15._element).trigger(Event.HIDDEN);
});
};
Modal.prototype._removeBackdrop = function _removeBackdrop() {
if (this._backdrop) {
$(this._backdrop).remove();
this._backdrop = null;
}
};
Modal.prototype._showBackdrop = function _showBackdrop(callback) {
var _this16 = this;
var animate = $(this._element).hasClass(ClassName.FADE) ? ClassName.FADE : '';
if (this._isShown && this._config.backdrop) {
var doAnimate = Util.supportsTransitionEnd() && animate;
this._backdrop = document.createElement('div');
this._backdrop.className = ClassName.BACKDROP;
if (animate) {
$(this._backdrop).addClass(animate);
}
$(this._backdrop).appendTo(document.body);
$(this._element).on(Event.CLICK_DISMISS, function (event) {
if (_this16._ignoreBackdropClick) {
_this16._ignoreBackdropClick = false;
return;
}
if (event.target !== event.currentTarget) {
return;
}
if (_this16._config.backdrop === 'static') {
_this16._element.focus();
} else {
_this16.hide();
}
});
if (doAnimate) {
Util.reflow(this._backdrop);
}
$(this._backdrop).addClass(ClassName.SHOW);
if (!callback) {
return;
}
if (!doAnimate) {
callback();
return;
}
$(this._backdrop).one(Util.TRANSITION_END, callback).emulateTransitionEnd(BACKDROP_TRANSITION_DURATION);
} else if (!this._isShown && this._backdrop) {
$(this._backdrop).removeClass(ClassName.SHOW);
var callbackRemove = function callbackRemove() {
_this16._removeBackdrop();
if (callback) {
callback();
}
};
if (Util.supportsTransitionEnd() && $(this._element).hasClass(ClassName.FADE)) {
$(this._backdrop).one(Util.TRANSITION_END, callbackRemove).emulateTransitionEnd(BACKDROP_TRANSITION_DURATION);
} else {
callbackRemove();
}
} else if (callback) {
callback();
}
};
// ----------------------------------------------------------------------
// the following methods are used to handle overflowing modals
// todo (fat): these should probably be refactored out of modal.js
// ----------------------------------------------------------------------
Modal.prototype._handleUpdate = function _handleUpdate() {
this._adjustDialog();
};
Modal.prototype._adjustDialog = function _adjustDialog() {
var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;
if (!this._isBodyOverflowing && isModalOverflowing) {
this._element.style.paddingLeft = this._scrollbarWidth + 'px';
}
if (this._isBodyOverflowing && !isModalOverflowing) {
this._element.style.paddingRight = this._scrollbarWidth + 'px';
}
};
Modal.prototype._resetAdjustments = function _resetAdjustments() {
this._element.style.paddingLeft = '';
this._element.style.paddingRight = '';
};
Modal.prototype._checkScrollbar = function _checkScrollbar() {
this._isBodyOverflowing = document.body.clientWidth < window.innerWidth;
this._scrollbarWidth = this._getScrollbarWidth();
};
Modal.prototype._setScrollbar = function _setScrollbar() {
var bodyPadding = parseInt($(Selector.FIXED_CONTENT).css('padding-right') || 0, 10);
this._originalBodyPadding = document.body.style.paddingRight || '';
if (this._isBodyOverflowing) {
document.body.style.paddingRight = bodyPadding + this._scrollbarWidth + 'px';
}
};
Modal.prototype._resetScrollbar = function _resetScrollbar() {
document.body.style.paddingRight = this._originalBodyPadding;
};
Modal.prototype._getScrollbarWidth = function _getScrollbarWidth() {
// thx d.walsh
var scrollDiv = document.createElement('div');
scrollDiv.className = ClassName.SCROLLBAR_MEASURER;
document.body.appendChild(scrollDiv);
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
document.body.removeChild(scrollDiv);
return scrollbarWidth;
};
// static
Modal._jQueryInterface = function _jQueryInterface(config, relatedTarget) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
var _config = $.extend({}, Modal.Default, $(this).data(), (typeof config === 'undefined' ? 'undefined' : _typeof(config)) === 'object' && config);
if (!data) {
data = new Modal(this, _config);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (data[config] === undefined) {
throw new Error('No method named "' + config + '"');
}
data[config](relatedTarget);
} else if (_config.show) {
data.show(relatedTarget);
}
});
};
_createClass(Modal, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}, {
key: 'Default',
get: function get() {
return Default;
}
}]);
return Modal;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
var _this17 = this;
var target = void 0;
var selector = Util.getSelectorFromElement(this);
if (selector) {
target = $(selector)[0];
}
var config = $(target).data(DATA_KEY) ? 'toggle' : $.extend({}, $(target).data(), $(this).data());
if (this.tagName === 'A' || this.tagName === 'AREA') {
event.preventDefault();
}
var $target = $(target).one(Event.SHOW, function (showEvent) {
if (showEvent.isDefaultPrevented()) {
// only register focus restorer if modal will actually get shown
return;
}
$target.one(Event.HIDDEN, function () {
if ($(_this17).is(':visible')) {
_this17.focus();
}
});
});
Modal._jQueryInterface.call($(target), config, this);
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Modal._jQueryInterface;
$.fn[NAME].Constructor = Modal;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Modal._jQueryInterface;
};
return Modal;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): scrollspy.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var ScrollSpy = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'scrollspy';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.scrollspy';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var Default = {
offset: 10,
method: 'auto',
target: ''
};
var DefaultType = {
offset: 'number',
method: 'string',
target: '(string|element)'
};
var Event = {
ACTIVATE: 'activate' + EVENT_KEY,
SCROLL: 'scroll' + EVENT_KEY,
LOAD_DATA_API: 'load' + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
DROPDOWN_ITEM: 'dropdown-item',
DROPDOWN_MENU: 'dropdown-menu',
NAV_LINK: 'nav-link',
NAV: 'nav',
ACTIVE: 'active'
};
var Selector = {
DATA_SPY: '[data-spy="scroll"]',
ACTIVE: '.active',
LIST_ITEM: '.list-item',
LI: 'li',
LI_DROPDOWN: 'li.dropdown',
NAV_LINKS: '.nav-link',
DROPDOWN: '.dropdown',
DROPDOWN_ITEMS: '.dropdown-item',
DROPDOWN_TOGGLE: '.dropdown-toggle'
};
var OffsetMethod = {
OFFSET: 'offset',
POSITION: 'position'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var ScrollSpy = function () {
function ScrollSpy(element, config) {
var _this18 = this;
_classCallCheck(this, ScrollSpy);
this._element = element;
this._scrollElement = element.tagName === 'BODY' ? window : element;
this._config = this._getConfig(config);
this._selector = this._config.target + ' ' + Selector.NAV_LINKS + ',' + (this._config.target + ' ' + Selector.DROPDOWN_ITEMS);
this._offsets = [];
this._targets = [];
this._activeTarget = null;
this._scrollHeight = 0;
$(this._scrollElement).on(Event.SCROLL, function (event) {
return _this18._process(event);
});
this.refresh();
this._process();
}
// getters
// public
ScrollSpy.prototype.refresh = function refresh() {
var _this19 = this;
var autoMethod = this._scrollElement !== this._scrollElement.window ? OffsetMethod.POSITION : OffsetMethod.OFFSET;
var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method;
var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0;
this._offsets = [];
this._targets = [];
this._scrollHeight = this._getScrollHeight();
var targets = $.makeArray($(this._selector));
targets.map(function (element) {
var target = void 0;
var targetSelector = Util.getSelectorFromElement(element);
if (targetSelector) {
target = $(targetSelector)[0];
}
if (target && (target.offsetWidth || target.offsetHeight)) {
// todo (fat): remove sketch reliance on jQuery position/offset
return [$(target)[offsetMethod]().top + offsetBase, targetSelector];
}
return null;
}).filter(function (item) {
return item;
}).sort(function (a, b) {
return a[0] - b[0];
}).forEach(function (item) {
_this19._offsets.push(item[0]);
_this19._targets.push(item[1]);
});
};
ScrollSpy.prototype.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
$(this._scrollElement).off(EVENT_KEY);
this._element = null;
this._scrollElement = null;
this._config = null;
this._selector = null;
this._offsets = null;
this._targets = null;
this._activeTarget = null;
this._scrollHeight = null;
};
// private
ScrollSpy.prototype._getConfig = function _getConfig(config) {
config = $.extend({}, Default, config);
if (typeof config.target !== 'string') {
var id = $(config.target).attr('id');
if (!id) {
id = Util.getUID(NAME);
$(config.target).attr('id', id);
}
config.target = '#' + id;
}
Util.typeCheckConfig(NAME, config, DefaultType);
return config;
};
ScrollSpy.prototype._getScrollTop = function _getScrollTop() {
return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop;
};
ScrollSpy.prototype._getScrollHeight = function _getScrollHeight() {
return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
};
ScrollSpy.prototype._getOffsetHeight = function _getOffsetHeight() {
return this._scrollElement === window ? window.innerHeight : this._scrollElement.offsetHeight;
};
ScrollSpy.prototype._process = function _process() {
var scrollTop = this._getScrollTop() + this._config.offset;
var scrollHeight = this._getScrollHeight();
var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight();
if (this._scrollHeight !== scrollHeight) {
this.refresh();
}
if (scrollTop >= maxScroll) {
var target = this._targets[this._targets.length - 1];
if (this._activeTarget !== target) {
this._activate(target);
}
return;
}
if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {
this._activeTarget = null;
this._clear();
return;
}
for (var i = this._offsets.length; i--;) {
var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (this._offsets[i + 1] === undefined || scrollTop < this._offsets[i + 1]);
if (isActiveTarget) {
this._activate(this._targets[i]);
}
}
};
ScrollSpy.prototype._activate = function _activate(target) {
this._activeTarget = target;
this._clear();
var queries = this._selector.split(',');
queries = queries.map(function (selector) {
return selector + '[data-target="' + target + '"],' + (selector + '[href="' + target + '"]');
});
var $link = $(queries.join(','));
if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
$link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE);
$link.addClass(ClassName.ACTIVE);
} else {
// todo (fat) this is kinda sus...
// recursively add actives to tested nav-links
$link.parents(Selector.LI).find('> ' + Selector.NAV_LINKS).addClass(ClassName.ACTIVE);
}
$(this._scrollElement).trigger(Event.ACTIVATE, {
relatedTarget: target
});
};
ScrollSpy.prototype._clear = function _clear() {
$(this._selector).filter(Selector.ACTIVE).removeClass(ClassName.ACTIVE);
};
// static
ScrollSpy._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
var _config = (typeof config === 'undefined' ? 'undefined' : _typeof(config)) === 'object' && config;
if (!data) {
data = new ScrollSpy(this, _config);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (data[config] === undefined) {
throw new Error('No method named "' + config + '"');
}
data[config]();
}
});
};
_createClass(ScrollSpy, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}, {
key: 'Default',
get: function get() {
return Default;
}
}]);
return ScrollSpy;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(window).on(Event.LOAD_DATA_API, function () {
var scrollSpys = $.makeArray($(Selector.DATA_SPY));
for (var i = scrollSpys.length; i--;) {
var $spy = $(scrollSpys[i]);
ScrollSpy._jQueryInterface.call($spy, $spy.data());
}
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = ScrollSpy._jQueryInterface;
$.fn[NAME].Constructor = ScrollSpy;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return ScrollSpy._jQueryInterface;
};
return ScrollSpy;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): tab.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Tab = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'tab';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.tab';
var EVENT_KEY = '.' + DATA_KEY;
var DATA_API_KEY = '.data-api';
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 150;
var Event = {
HIDE: 'hide' + EVENT_KEY,
HIDDEN: 'hidden' + EVENT_KEY,
SHOW: 'show' + EVENT_KEY,
SHOWN: 'shown' + EVENT_KEY,
CLICK_DATA_API: 'click' + EVENT_KEY + DATA_API_KEY
};
var ClassName = {
DROPDOWN_MENU: 'dropdown-menu',
ACTIVE: 'active',
DISABLED: 'disabled',
FADE: 'fade',
SHOW: 'show'
};
var Selector = {
A: 'a',
LI: 'li',
DROPDOWN: '.dropdown',
LIST: 'ul:not(.dropdown-menu), ol:not(.dropdown-menu), nav:not(.dropdown-menu)',
FADE_CHILD: '> .nav-item .fade, > .fade',
ACTIVE: '.active',
ACTIVE_CHILD: '> .nav-item > .active, > .active',
DATA_TOGGLE: '[data-toggle="tab"], [data-toggle="pill"]',
DROPDOWN_TOGGLE: '.dropdown-toggle',
DROPDOWN_ACTIVE_CHILD: '> .dropdown-menu .active'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Tab = function () {
function Tab(element) {
_classCallCheck(this, Tab);
this._element = element;
}
// getters
// public
Tab.prototype.show = function show() {
var _this20 = this;
if (this._element.parentNode && this._element.parentNode.nodeType === Node.ELEMENT_NODE && $(this._element).hasClass(ClassName.ACTIVE) || $(this._element).hasClass(ClassName.DISABLED)) {
return;
}
var target = void 0;
var previous = void 0;
var listElement = $(this._element).closest(Selector.LIST)[0];
var selector = Util.getSelectorFromElement(this._element);
if (listElement) {
previous = $.makeArray($(listElement).find(Selector.ACTIVE));
previous = previous[previous.length - 1];
}
var hideEvent = $.Event(Event.HIDE, {
relatedTarget: this._element
});
var showEvent = $.Event(Event.SHOW, {
relatedTarget: previous
});
if (previous) {
$(previous).trigger(hideEvent);
}
$(this._element).trigger(showEvent);
if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) {
return;
}
if (selector) {
target = $(selector)[0];
}
this._activate(this._element, listElement);
var complete = function complete() {
var hiddenEvent = $.Event(Event.HIDDEN, {
relatedTarget: _this20._element
});
var shownEvent = $.Event(Event.SHOWN, {
relatedTarget: previous
});
$(previous).trigger(hiddenEvent);
$(_this20._element).trigger(shownEvent);
};
if (target) {
this._activate(target, target.parentNode, complete);
} else {
complete();
}
};
Tab.prototype.dispose = function dispose() {
$.removeClass(this._element, DATA_KEY);
this._element = null;
};
// private
Tab.prototype._activate = function _activate(element, container, callback) {
var _this21 = this;
var active = $(container).find(Selector.ACTIVE_CHILD)[0];
var isTransitioning = callback && Util.supportsTransitionEnd() && (active && $(active).hasClass(ClassName.FADE) || Boolean($(container).find(Selector.FADE_CHILD)[0]));
var complete = function complete() {
return _this21._transitionComplete(element, active, isTransitioning, callback);
};
if (active && isTransitioning) {
$(active).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
} else {
complete();
}
if (active) {
$(active).removeClass(ClassName.SHOW);
}
};
Tab.prototype._transitionComplete = function _transitionComplete(element, active, isTransitioning, callback) {
if (active) {
$(active).removeClass(ClassName.ACTIVE);
var dropdownChild = $(active.parentNode).find(Selector.DROPDOWN_ACTIVE_CHILD)[0];
if (dropdownChild) {
$(dropdownChild).removeClass(ClassName.ACTIVE);
}
active.setAttribute('aria-expanded', false);
}
$(element).addClass(ClassName.ACTIVE);
element.setAttribute('aria-expanded', true);
if (isTransitioning) {
Util.reflow(element);
$(element).addClass(ClassName.SHOW);
} else {
$(element).removeClass(ClassName.FADE);
}
if (element.parentNode && $(element.parentNode).hasClass(ClassName.DROPDOWN_MENU)) {
var dropdownElement = $(element).closest(Selector.DROPDOWN)[0];
if (dropdownElement) {
$(dropdownElement).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE);
}
element.setAttribute('aria-expanded', true);
}
if (callback) {
callback();
}
};
// static
Tab._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var $this = $(this);
var data = $this.data(DATA_KEY);
if (!data) {
data = new Tab(this);
$this.data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (data[config] === undefined) {
throw new Error('No method named "' + config + '"');
}
data[config]();
}
});
};
_createClass(Tab, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}]);
return Tab;
}();
/**
* ------------------------------------------------------------------------
* Data Api implementation
* ------------------------------------------------------------------------
*/
$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
event.preventDefault();
Tab._jQueryInterface.call($(this), 'show');
});
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Tab._jQueryInterface;
$.fn[NAME].Constructor = Tab;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Tab._jQueryInterface;
};
return Tab;
}(jQuery);
/* global Tether */
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): tooltip.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Tooltip = function ($) {
/**
* Check for Tether dependency
* Tether - http://tether.io/
*/
if (typeof Tether === 'undefined') {
throw new Error('Bootstrap tooltips require Tether (http://tether.io/)');
}
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'tooltip';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.tooltip';
var EVENT_KEY = '.' + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 150;
var CLASS_PREFIX = 'bs-tether';
var Default = {
animation: true,
template: '<div class="tooltip" role="tooltip">' + '<div class="tooltip-inner"></div></div>',
trigger: 'hover focus',
title: '',
delay: 0,
html: false,
selector: false,
placement: 'top',
offset: '0 0',
constraints: [],
container: false
};
var DefaultType = {
animation: 'boolean',
template: 'string',
title: '(string|element|function)',
trigger: 'string',
delay: '(number|object)',
html: 'boolean',
selector: '(string|boolean)',
placement: '(string|function)',
offset: 'string',
constraints: 'array',
container: '(string|element|boolean)'
};
var AttachmentMap = {
TOP: 'bottom center',
RIGHT: 'middle left',
BOTTOM: 'top center',
LEFT: 'middle right'
};
var HoverState = {
SHOW: 'show',
OUT: 'out'
};
var Event = {
HIDE: 'hide' + EVENT_KEY,
HIDDEN: 'hidden' + EVENT_KEY,
SHOW: 'show' + EVENT_KEY,
SHOWN: 'shown' + EVENT_KEY,
INSERTED: 'inserted' + EVENT_KEY,
CLICK: 'click' + EVENT_KEY,
FOCUSIN: 'focusin' + EVENT_KEY,
FOCUSOUT: 'focusout' + EVENT_KEY,
MOUSEENTER: 'mouseenter' + EVENT_KEY,
MOUSELEAVE: 'mouseleave' + EVENT_KEY
};
var ClassName = {
FADE: 'fade',
SHOW: 'show'
};
var Selector = {
TOOLTIP: '.tooltip',
TOOLTIP_INNER: '.tooltip-inner'
};
var TetherClass = {
element: false,
enabled: false
};
var Trigger = {
HOVER: 'hover',
FOCUS: 'focus',
CLICK: 'click',
MANUAL: 'manual'
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Tooltip = function () {
function Tooltip(element, config) {
_classCallCheck(this, Tooltip);
// private
this._isEnabled = true;
this._timeout = 0;
this._hoverState = '';
this._activeTrigger = {};
this._isTransitioning = false;
this._tether = null;
// protected
this.element = element;
this.config = this._getConfig(config);
this.tip = null;
this._setListeners();
}
// getters
// public
Tooltip.prototype.enable = function enable() {
this._isEnabled = true;
};
Tooltip.prototype.disable = function disable() {
this._isEnabled = false;
};
Tooltip.prototype.toggleEnabled = function toggleEnabled() {
this._isEnabled = !this._isEnabled;
};
Tooltip.prototype.toggle = function toggle(event) {
if (event) {
var dataKey = this.constructor.DATA_KEY;
var context = $(event.currentTarget).data(dataKey);
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
}
context._activeTrigger.click = !context._activeTrigger.click;
if (context._isWithActiveTrigger()) {
context._enter(null, context);
} else {
context._leave(null, context);
}
} else {
if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {
this._leave(null, this);
return;
}
this._enter(null, this);
}
};
Tooltip.prototype.dispose = function dispose() {
clearTimeout(this._timeout);
this.cleanupTether();
$.removeData(this.element, this.constructor.DATA_KEY);
$(this.element).off(this.constructor.EVENT_KEY);
$(this.element).closest('.modal').off('hide.bs.modal');
if (this.tip) {
$(this.tip).remove();
}
this._isEnabled = null;
this._timeout = null;
this._hoverState = null;
this._activeTrigger = null;
this._tether = null;
this.element = null;
this.config = null;
this.tip = null;
};
Tooltip.prototype.show = function show() {
var _this22 = this;
if ($(this.element).css('display') === 'none') {
throw new Error('Please use show on visible elements');
}
var showEvent = $.Event(this.constructor.Event.SHOW);
if (this.isWithContent() && this._isEnabled) {
if (this._isTransitioning) {
throw new Error('Tooltip is transitioning');
}
$(this.element).trigger(showEvent);
var isInTheDom = $.contains(this.element.ownerDocument.documentElement, this.element);
if (showEvent.isDefaultPrevented() || !isInTheDom) {
return;
}
var tip = this.getTipElement();
var tipId = Util.getUID(this.constructor.NAME);
tip.setAttribute('id', tipId);
this.element.setAttribute('aria-describedby', tipId);
this.setContent();
if (this.config.animation) {
$(tip).addClass(ClassName.FADE);
}
var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement;
var attachment = this._getAttachment(placement);
var container = this.config.container === false ? document.body : $(this.config.container);
$(tip).data(this.constructor.DATA_KEY, this).appendTo(container);
$(this.element).trigger(this.constructor.Event.INSERTED);
this._tether = new Tether({
attachment: attachment,
element: tip,
target: this.element,
classes: TetherClass,
classPrefix: CLASS_PREFIX,
offset: this.config.offset,
constraints: this.config.constraints,
addTargetClasses: false
});
Util.reflow(tip);
this._tether.position();
$(tip).addClass(ClassName.SHOW);
var complete = function complete() {
var prevHoverState = _this22._hoverState;
_this22._hoverState = null;
_this22._isTransitioning = false;
$(_this22.element).trigger(_this22.constructor.Event.SHOWN);
if (prevHoverState === HoverState.OUT) {
_this22._leave(null, _this22);
}
};
if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
this._isTransitioning = true;
$(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(Tooltip._TRANSITION_DURATION);
return;
}
complete();
}
};
Tooltip.prototype.hide = function hide(callback) {
var _this23 = this;
var tip = this.getTipElement();
var hideEvent = $.Event(this.constructor.Event.HIDE);
if (this._isTransitioning) {
throw new Error('Tooltip is transitioning');
}
var complete = function complete() {
if (_this23._hoverState !== HoverState.SHOW && tip.parentNode) {
tip.parentNode.removeChild(tip);
}
_this23.element.removeAttribute('aria-describedby');
$(_this23.element).trigger(_this23.constructor.Event.HIDDEN);
_this23._isTransitioning = false;
_this23.cleanupTether();
if (callback) {
callback();
}
};
$(this.element).trigger(hideEvent);
if (hideEvent.isDefaultPrevented()) {
return;
}
$(tip).removeClass(ClassName.SHOW);
this._activeTrigger[Trigger.CLICK] = false;
this._activeTrigger[Trigger.FOCUS] = false;
this._activeTrigger[Trigger.HOVER] = false;
if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
this._isTransitioning = true;
$(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
} else {
complete();
}
this._hoverState = '';
};
// protected
Tooltip.prototype.isWithContent = function isWithContent() {
return Boolean(this.getTitle());
};
Tooltip.prototype.getTipElement = function getTipElement() {
return this.tip = this.tip || $(this.config.template)[0];
};
Tooltip.prototype.setContent = function setContent() {
var $tip = $(this.getTipElement());
this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle());
$tip.removeClass(ClassName.FADE + ' ' + ClassName.SHOW);
this.cleanupTether();
};
Tooltip.prototype.setElementContent = function setElementContent($element, content) {
var html = this.config.html;
if ((typeof content === 'undefined' ? 'undefined' : _typeof(content)) === 'object' && (content.nodeType || content.jquery)) {
// content is a DOM node or a jQuery
if (html) {
if (!$(content).parent().is($element)) {
$element.empty().append(content);
}
} else {
$element.text($(content).text());
}
} else {
$element[html ? 'html' : 'text'](content);
}
};
Tooltip.prototype.getTitle = function getTitle() {
var title = this.element.getAttribute('data-original-title');
if (!title) {
title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title;
}
return title;
};
Tooltip.prototype.cleanupTether = function cleanupTether() {
if (this._tether) {
this._tether.destroy();
}
};
// private
Tooltip.prototype._getAttachment = function _getAttachment(placement) {
return AttachmentMap[placement.toUpperCase()];
};
Tooltip.prototype._setListeners = function _setListeners() {
var _this24 = this;
var triggers = this.config.trigger.split(' ');
triggers.forEach(function (trigger) {
if (trigger === 'click') {
$(_this24.element).on(_this24.constructor.Event.CLICK, _this24.config.selector, function (event) {
return _this24.toggle(event);
});
} else if (trigger !== Trigger.MANUAL) {
var eventIn = trigger === Trigger.HOVER ? _this24.constructor.Event.MOUSEENTER : _this24.constructor.Event.FOCUSIN;
var eventOut = trigger === Trigger.HOVER ? _this24.constructor.Event.MOUSELEAVE : _this24.constructor.Event.FOCUSOUT;
$(_this24.element).on(eventIn, _this24.config.selector, function (event) {
return _this24._enter(event);
}).on(eventOut, _this24.config.selector, function (event) {
return _this24._leave(event);
});
}
$(_this24.element).closest('.modal').on('hide.bs.modal', function () {
return _this24.hide();
});
});
if (this.config.selector) {
this.config = $.extend({}, this.config, {
trigger: 'manual',
selector: ''
});
} else {
this._fixTitle();
}
};
Tooltip.prototype._fixTitle = function _fixTitle() {
var titleType = _typeof(this.element.getAttribute('data-original-title'));
if (this.element.getAttribute('title') || titleType !== 'string') {
this.element.setAttribute('data-original-title', this.element.getAttribute('title') || '');
this.element.setAttribute('title', '');
}
};
Tooltip.prototype._enter = function _enter(event, context) {
var dataKey = this.constructor.DATA_KEY;
context = context || $(event.currentTarget).data(dataKey);
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
}
if (event) {
context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true;
}
if ($(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) {
context._hoverState = HoverState.SHOW;
return;
}
clearTimeout(context._timeout);
context._hoverState = HoverState.SHOW;
if (!context.config.delay || !context.config.delay.show) {
context.show();
return;
}
context._timeout = setTimeout(function () {
if (context._hoverState === HoverState.SHOW) {
context.show();
}
}, context.config.delay.show);
};
Tooltip.prototype._leave = function _leave(event, context) {
var dataKey = this.constructor.DATA_KEY;
context = context || $(event.currentTarget).data(dataKey);
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
}
if (event) {
context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false;
}
if (context._isWithActiveTrigger()) {
return;
}
clearTimeout(context._timeout);
context._hoverState = HoverState.OUT;
if (!context.config.delay || !context.config.delay.hide) {
context.hide();
return;
}
context._timeout = setTimeout(function () {
if (context._hoverState === HoverState.OUT) {
context.hide();
}
}, context.config.delay.hide);
};
Tooltip.prototype._isWithActiveTrigger = function _isWithActiveTrigger() {
for (var trigger in this._activeTrigger) {
if (this._activeTrigger[trigger]) {
return true;
}
}
return false;
};
Tooltip.prototype._getConfig = function _getConfig(config) {
config = $.extend({}, this.constructor.Default, $(this.element).data(), config);
if (config.delay && typeof config.delay === 'number') {
config.delay = {
show: config.delay,
hide: config.delay
};
}
Util.typeCheckConfig(NAME, config, this.constructor.DefaultType);
return config;
};
Tooltip.prototype._getDelegateConfig = function _getDelegateConfig() {
var config = {};
if (this.config) {
for (var key in this.config) {
if (this.constructor.Default[key] !== this.config[key]) {
config[key] = this.config[key];
}
}
}
return config;
};
// static
Tooltip._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
var _config = (typeof config === 'undefined' ? 'undefined' : _typeof(config)) === 'object' && config;
if (!data && /dispose|hide/.test(config)) {
return;
}
if (!data) {
data = new Tooltip(this, _config);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (data[config] === undefined) {
throw new Error('No method named "' + config + '"');
}
data[config]();
}
});
};
_createClass(Tooltip, null, [{
key: 'VERSION',
get: function get() {
return VERSION;
}
}, {
key: 'Default',
get: function get() {
return Default;
}
}, {
key: 'NAME',
get: function get() {
return NAME;
}
}, {
key: 'DATA_KEY',
get: function get() {
return DATA_KEY;
}
}, {
key: 'Event',
get: function get() {
return Event;
}
}, {
key: 'EVENT_KEY',
get: function get() {
return EVENT_KEY;
}
}, {
key: 'DefaultType',
get: function get() {
return DefaultType;
}
}]);
return Tooltip;
}();
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Tooltip._jQueryInterface;
$.fn[NAME].Constructor = Tooltip;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Tooltip._jQueryInterface;
};
return Tooltip;
}(jQuery);
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-alpha.6): popover.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
var Popover = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'popover';
var VERSION = '4.0.0-alpha.6';
var DATA_KEY = 'bs.popover';
var EVENT_KEY = '.' + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
var Default = $.extend({}, Tooltip.Default, {
placement: 'right',
trigger: 'click',
content: '',
template: '<div class="popover" role="tooltip">' + '<h3 class="popover-title"></h3>' + '<div class="popover-content"></div></div>'
});
var DefaultType = $.extend({}, Tooltip.DefaultType, {
content: '(string|element|function)'
});
var ClassName = {
FADE: 'fade',
SHOW: 'show'
};
var Selector = {
TITLE: '.popover-title',
CONTENT: '.popover-content'
};
var Event = {
HIDE: 'hide' + EVENT_KEY,
HIDDEN: 'hidden' + EVENT_KEY,
SHOW: 'show' + EVENT_KEY,
SHOWN: 'shown' + EVENT_KEY,
INSERTED: 'inserted' + EVENT_KEY,
CLICK: 'click' + EVENT_KEY,
FOCUSIN: 'focusin' + EVENT_KEY,
FOCUSOUT: 'focusout' + EVENT_KEY,
MOUSEENTER: 'mouseenter' + EVENT_KEY,
MOUSELEAVE: 'mouseleave' + EVENT_KEY
};
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
var Popover = function (_Tooltip) {
_inherits(Popover, _Tooltip);
function Popover() {
_classCallCheck(this, Popover);
return _possibleConstructorReturn(this, _Tooltip.apply(this, arguments));
}
// overrides
Popover.prototype.isWithContent = function isWithContent() {
return this.getTitle() || this._getContent();
};
Popover.prototype.getTipElement = function getTipElement() {
return this.tip = this.tip || $(this.config.template)[0];
};
Popover.prototype.setContent = function setContent() {
var $tip = $(this.getTipElement());
// we use append for html objects to maintain js events
this.setElementContent($tip.find(Selector.TITLE), this.getTitle());
this.setElementContent($tip.find(Selector.CONTENT), this._getContent());
$tip.removeClass(ClassName.FADE + ' ' + ClassName.SHOW);
this.cleanupTether();
};
// private
Popover.prototype._getContent = function _getContent() {
return this.element.getAttribute('data-content') || (typeof this.config.content === 'function' ? this.config.content.call(this.element) : this.config.content);
};
// static
Popover._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
var _config = (typeof config === 'undefined' ? 'undefined' : _typeof(config)) === 'object' ? config : null;
if (!data && /destroy|hide/.test(config)) {
return;
}
if (!data) {
data = new Popover(this, _config);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (data[config] === undefined) {
throw new Error('No method named "' + config + '"');
}
data[config]();
}
});
};
_createClass(Popover, null, [{
key: 'VERSION',
// getters
get: function get() {
return VERSION;
}
}, {
key: 'Default',
get: function get() {
return Default;
}
}, {
key: 'NAME',
get: function get() {
return NAME;
}
}, {
key: 'DATA_KEY',
get: function get() {
return DATA_KEY;
}
}, {
key: 'Event',
get: function get() {
return Event;
}
}, {
key: 'EVENT_KEY',
get: function get() {
return EVENT_KEY;
}
}, {
key: 'DefaultType',
get: function get() {
return DefaultType;
}
}]);
return Popover;
}(Tooltip);
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
$.fn[NAME] = Popover._jQueryInterface;
$.fn[NAME].Constructor = Popover;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Popover._jQueryInterface;
};
return Popover;
}(jQuery);
}(); home/xbodynamge/lebauwcentre/wp-content/themes/integral/js/bootstrap.js 0000644 00000203732 15113404112 0022467 0 ustar 00 /*!
* Bootstrap v3.3.4 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/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)) {
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher')
}
}(jQuery);
/* ========================================================================
* Bootstrap: transition.js v3.3.4
* http://getbootstrap.com/javascript/#transitions
* ========================================================================
* Copyright 2011-2015 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.4
* http://getbootstrap.com/javascript/#alerts
* ========================================================================
* Copyright 2011-2015 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.4'
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)
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.4
* http://getbootstrap.com/javascript/#buttons
* ========================================================================
* Copyright 2011-2015 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.4'
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 = 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)
} else if (this.isLoading) {
this.isLoading = false
$el.removeClass(d).removeAttr(d)
}
}, 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') && this.$element.hasClass('active')) changed = false
else $parent.find('.active').removeClass('active')
}
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
} else {
this.$element.attr('aria-pressed', !this.$element.hasClass('active'))
}
if (changed) 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)
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
Plugin.call($btn, 'toggle')
e.preventDefault()
})
.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.4
* http://getbootstrap.com/javascript/#carousel
* ========================================================================
* Copyright 2011-2015 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.4'
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.4
* http://getbootstrap.com/javascript/#collapse
* ========================================================================
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+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.4'
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.4
* http://getbootstrap.com/javascript/#dropdowns
* ========================================================================
* Copyright 2011-2015 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.4'
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
$('<div class="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('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('[role="menu"]' + desc + ', [role="listbox"]' + 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')
}
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
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
if (e.isDefaultPrevented()) return
$this.attr('aria-expanded', 'false')
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
})
}
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()
}
// 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', '[role="menu"]', Dropdown.prototype.keydown)
.on('keydown.bs.dropdown.data-api', '[role="listbox"]', Dropdown.prototype.keydown)
}(jQuery);
/* ========================================================================
* Bootstrap: modal.js v3.3.4
* http://getbootstrap.com/javascript/#modals
* ========================================================================
* Copyright 2011-2015 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.4'
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')
.attr('aria-hidden', false)
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')
.attr('aria-hidden', true)
.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 (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 = $('<div class="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.4
* http://getbootstrap.com/javascript/#tooltip
* Inspired by the original jQuery.tipsy by Jason Frame
* ========================================================================
* Copyright 2011-2015 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.init('tooltip', element, options)
}
Tooltip.VERSION = '3.3.4'
Tooltip.TRANSITION_DURATION = 150
Tooltip.DEFAULTS = {
animation: true,
placement: 'top',
selector: false,
template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
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 && $(this.options.viewport.selector || this.options.viewport)
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.$tip && self.$tip.is(':visible')) {
self.hoverState = 'in'
return
}
if (!self) {
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
$(obj.currentTarget).data('bs.' + this.type, self)
}
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.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)
}
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)
var pos = this.getPosition()
var actualWidth = $tip[0].offsetWidth
var actualHeight = $tip[0].offsetHeight
if (autoPlace) {
var orgPlacement = placement
var $container = this.options.container ? $(this.options.container) : this.$element.parent()
var containerDim = this.getPosition($container)
placement = placement == 'bottom' && pos.bottom + actualHeight > containerDim.bottom ? 'top' :
placement == 'top' && pos.top - actualHeight < containerDim.top ? 'bottom' :
placement == 'right' && pos.right + actualWidth > containerDim.width ? 'left' :
placement == 'left' && pos.left - actualWidth < containerDim.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 = offset.top + marginTop
offset.left = 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()
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 elOffset = isBody ? { top: 0, left: 0 } : $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.width) { // 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 () {
return (this.$tip = this.$tip || $(this.options.template))
}
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)
}
}
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)
})
}
// 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.4
* http://getbootstrap.com/javascript/#popovers
* ========================================================================
* Copyright 2011-2015 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.4'
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
placement: 'right',
trigger: 'click',
content: '',
template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
})
// 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.4
* http://getbootstrap.com/javascript/#scrollspy
* ========================================================================
* Copyright 2011-2015 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.4'
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.4
* http://getbootstrap.com/javascript/#tabs
* ========================================================================
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */
+function ($) {
'use strict';
// TAB CLASS DEFINITION
// ====================
var Tab = function (element) {
this.element = $(element)
}
Tab.VERSION = '3.3.4'
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.4
* http://getbootstrap.com/javascript/#affix
* ========================================================================
* Copyright 2011-2015 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.4'
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 = $(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);
home/xbodynamge/crosstraining/wp-content/themes/zerif-lite/js/bootstrap.js 0000604 00000113037 15113547173 0023152 0 ustar 00 /*!
* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if ("undefined" == typeof jQuery) {
throw new Error( "Bootstrap's JavaScript requires jQuery" );
} + function(a) {
"use strict";
function b() {
var a = document.createElement( "bootstrap" ),
b = {
WebkitTransition: "webkitTransitionEnd",
MozTransition: "transitionend",
OTransition: "oTransitionEnd otransitionend",
transition: "transitionend"
};
for (var c in b) {
if (void 0 !== a.style[c]) {
return
end: b[c]
}
};
return ! 1
}
a.fn.emulateTransitionEnd = function(b) {
var c = ! 1,
d = this;
a( this ).one(
a.support.transition.end, function() {
c = ! 0
}
);
var e = function() {
c || a( d ).trigger( a.support.transition.end )
};
return setTimeout( e, b ), this
}, a(
function() {
a.support.transition = b()
}
)
}(jQuery), + function(a) {
"use strict";
var b = '[data-dismiss="alert"]',
c = function(c) {
a( c ).on( "click", b, this.close )
};
c.prototype.close = function(b) {
function c() {
f.trigger( "closed.bs.alert" ).remove()
}
var d = a( this ),
e = d.attr( "data-target" );
e || (e = d.attr( "href" ), e = e && e.replace( /.*(?=#[^\s]*$)/, "" ));
var f = a( e );
b && b.preventDefault(), f.length || (f = d.hasClass( "alert" ) ? d : d.parent()), f.trigger( b = a.Event( "close.bs.alert" ) ), b.isDefaultPrevented() || (f.removeClass( "in" ), a.support.transition && f.hasClass( "fade" ) ? f.one( a.support.transition.end, c ).emulateTransitionEnd( 150 ) : c())
};
var d = a.fn.alert;
a.fn.alert = function(b) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.alert" );
e || d.data( "bs.alert", e = new c( this ) ), "string" == typeof b && e[b].call( d )
}
)
}, a.fn.alert.Constructor = c, a.fn.alert.noConflict = function() {
return a.fn.alert = d, this
}, a( document ).on( "click.bs.alert.data-api", b, c.prototype.close )
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.isLoading = ! 1
};
b.DEFAULTS = {
loadingText: "loading..."
}, b.prototype.setState = function(b) {
var c = "disabled",
d = this.$element,
e = d.is( "input" ) ? "val" : "html",
f = d.data();
b += "Text", f.resetText || d.data( "resetText", d[e]() ), d[e](f[b] || this.options[b]), setTimeout(
a.proxy(
function() {
"loadingText" == b ? (this.isLoading = ! 0, d.addClass( c ).attr( c, c )) : this.isLoading && (this.isLoading = ! 1, d.removeClass( c ).removeAttr( c ))
}, this
), 0
)
}, b.prototype.toggle = function() {
var a = ! 0,
b = this.$element.closest( '[data-toggle="buttons"]' );
if (b.length) {
var c = this.$element.find( "input" );
"radio" == c.prop( "type" ) && (c.prop( "checked" ) && this.$element.hasClass( "active" ) ? a = ! 1 : b.find( ".active" ).removeClass( "active" )), a && c.prop( "checked", ! this.$element.hasClass( "active" ) ).trigger( "change" )
}
a && this.$element.toggleClass( "active" )
};
var c = a.fn.button;
a.fn.button = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.button" ),
f = "object" == typeof c && c;
e || d.data( "bs.button", e = new b( this, f ) ), "toggle" == c ? e.toggle() : c && e.setState( c )
}
)
}, a.fn.button.Constructor = b, a.fn.button.noConflict = function() {
return a.fn.button = c, this
}, a( document ).on(
"click.bs.button.data-api", "[data-toggle^=button]", function(b) {
var c = a( b.target );
c.hasClass( "btn" ) || (c = c.closest( ".btn" )), c.button( "toggle" ), b.preventDefault()
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.$element = a( b ), this.$indicators = this.$element.find( ".carousel-indicators" ), this.options = c, this.paused = this.sliding = this.interval = this.$active = this.$items = null, "hover" == this.options.pause && this.$element.on( "mouseenter", a.proxy( this.pause, this ) ).on( "mouseleave", a.proxy( this.cycle, this ) )
};
b.DEFAULTS = {
interval: 5e3,
pause: "hover",
wrap: ! 0
}, b.prototype.cycle = function(b) {
return b || (this.paused = ! 1), this.interval && clearInterval( this.interval ), this.options.interval && ! this.paused && (this.interval = setInterval( a.proxy( this.next, this ), this.options.interval )), this
}, b.prototype.getActiveIndex = function() {
return this.$active = this.$element.find( ".item.active" ), this.$items = this.$active.parent().children(), this.$items.index( this.$active )
}, b.prototype.to = function(b) {
var c = this,
d = this.getActiveIndex();
return b > this.$items.length - 1 || 0 > b ? void 0 : this.sliding ? this.$element.one(
"slid.bs.carousel", function() {
c.to( b )
}
) : d == b ? this.pause().cycle() : this.slide( b > d ? "next" : "prev", a( this.$items[b] ) )
}, b.prototype.pause = function(b) {
return b || (this.paused = ! 0), this.$element.find( ".next, .prev" ).length && a.support.transition && (this.$element.trigger( a.support.transition.end ), this.cycle( ! 0 )), this.interval = clearInterval( this.interval ), this
}, b.prototype.next = function() {
return this.sliding ? void 0 : this.slide( "next" )
}, b.prototype.prev = function() {
return this.sliding ? void 0 : this.slide( "prev" )
}, b.prototype.slide = function(b, c) {
var d = this.$element.find( ".item.active" ),
e = c || d[b](),
f = this.interval,
g = "next" == b ? "left" : "right",
h = "next" == b ? "first" : "last",
i = this;
if ( ! e.length) {
if ( ! this.options.wrap) {
return;
}
e = this.$element.find( ".item" )[h]()
}
if (e.hasClass( "active" )) {
return this.sliding = ! 1;
}
var j = a.Event(
"slide.bs.carousel", {
relatedTarget: e[0],
direction: g
}
);
return this.$element.trigger( j ), j.isDefaultPrevented() ? void 0 : (this.sliding = ! 0, f && this.pause(), this.$indicators.length && (this.$indicators.find( ".active" ).removeClass( "active" ), this.$element.one(
"slid.bs.carousel", function() {
var b = a( i.$indicators.children()[i.getActiveIndex()] );
b && b.addClass( "active" )
}
)), a.support.transition && this.$element.hasClass( "slide" ) ? (e.addClass( b ), e[0].offsetWidth, d.addClass( g ), e.addClass( g ), d.one(
a.support.transition.end, function() {
e.removeClass( [b, g].join( " " ) ).addClass( "active" ), d.removeClass( ["active", g].join( " " ) ), i.sliding = ! 1, setTimeout(
function() {
i.$element.trigger( "slid.bs.carousel" )
}, 0
)
}
).emulateTransitionEnd( 1e3 * d.css( "transition-duration" ).slice( 0, -1 ) )) : (d.removeClass( "active" ), e.addClass( "active" ), this.sliding = ! 1, this.$element.trigger( "slid.bs.carousel" )), f && this.cycle(), this)
};
var c = a.fn.carousel;
a.fn.carousel = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.carousel" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c ),
g = "string" == typeof c ? c : f.slide;
e || d.data( "bs.carousel", e = new b( this, f ) ), "number" == typeof c ? e.to( c ) : g ? e[g]() : f.interval && e.pause().cycle()
}
)
}, a.fn.carousel.Constructor = b, a.fn.carousel.noConflict = function() {
return a.fn.carousel = c, this
}, a( document ).on(
"click.bs.carousel.data-api", "[data-slide], [data-slide-to]", function(b) {
var c, d = a( this ),
e = a( d.attr( "data-target" ) || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = a.extend( {}, e.data(), d.data() ),
g = d.attr( "data-slide-to" );
g && (f.interval = ! 1), e.carousel( f ), (g = d.attr( "data-slide-to" )) && e.data( "bs.carousel" ).to( g ), b.preventDefault()
}
), a( window ).on(
"load", function() {
a( '[data-ride="carousel"]' ).each(
function() {
var b = a( this );
b.carousel( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.transitioning = null, this.options.parent && (this.$parent = a( this.options.parent )), this.options.toggle && this.toggle()
};
b.DEFAULTS = {
toggle: ! 0
}, b.prototype.dimension = function() {
var a = this.$element.hasClass( "width" );
return a ? "width" : "height"
}, b.prototype.show = function() {
if ( ! this.transitioning && ! this.$element.hasClass( "in" )) {
var b = a.Event( "show.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.$parent && this.$parent.find( "> .panel > .in" );
if (c && c.length) {
var d = c.data( "bs.collapse" );
if (d && d.transitioning) {
return;
}
c.collapse( "hide" ), d || c.data( "bs.collapse", null )
}
var e = this.dimension();
this.$element.removeClass( "collapse" ).addClass( "collapsing" )[e](0), this.transitioning = 1;
var f = function() {
this.$element.removeClass( "collapsing" ).addClass( "collapse in" )[e]("auto"), this.transitioning = 0, this.$element.trigger( "shown.bs.collapse" )
};
if ( ! a.support.transition) {
return f.call( this );
}
var g = a.camelCase( ["scroll", e].join( "-" ) );
this.$element.one( a.support.transition.end, a.proxy( f, this ) ).emulateTransitionEnd( 350 )[e](this.$element[0][g])
}
}
}, b.prototype.hide = function() {
if ( ! this.transitioning && this.$element.hasClass( "in" )) {
var b = a.Event( "hide.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.dimension();
this.$element[c](this.$element[c]())[0].offsetHeight, this.$element.addClass( "collapsing" ).removeClass( "collapse" ).removeClass( "in" ), this.transitioning = 1;
var d = function() {
this.transitioning = 0, this.$element.trigger( "hidden.bs.collapse" ).removeClass( "collapsing" ).addClass( "collapse" )
};
return a.support.transition ? void this.$element[c](0).one( a.support.transition.end, a.proxy( d, this ) ).emulateTransitionEnd( 350 ) : d.call( this )
}
}
}, b.prototype.toggle = function() {
this[this.$element.hasClass( "in" ) ? "hide" : "show"]()
};
var c = a.fn.collapse;
a.fn.collapse = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.collapse" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c );
! e && f.toggle && "show" == c && (c = ! c), e || d.data( "bs.collapse", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.collapse.Constructor = b, a.fn.collapse.noConflict = function() {
return a.fn.collapse = c, this
}, a( document ).on(
"click.bs.collapse.data-api", "[data-toggle=collapse]", function(b) {
var c, d = a( this ),
e = d.attr( "data-target" ) || b.preventDefault() || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ),
f = a( e ),
g = f.data( "bs.collapse" ),
h = g ? "toggle" : d.data(),
i = d.attr( "data-parent" ),
j = i && a( i );
g && g.transitioning || (j && j.find( '[data-toggle=collapse][data-parent="' + i + '"]' ).not( d ).addClass( "collapsed" ), d[f.hasClass( "in" ) ? "addClass" : "removeClass"]("collapsed")), f.collapse( h )
}
)
}(jQuery), + function(a) {
"use strict";
function b(b) {
a( d ).remove(), a( e ).each(
function() {
var d = c( a( this ) ),
e = {
relatedTarget: this
};
d.hasClass( "open" ) && (d.trigger( b = a.Event( "hide.bs.dropdown", e ) ), b.isDefaultPrevented() || d.removeClass( "open" ).trigger( "hidden.bs.dropdown", e ))
}
)
}
function c(b) {
var c = b.attr( "data-target" );
c || (c = b.attr( "href" ), c = c && /#[A-Za-z]/.test( c ) && c.replace( /.*(?=#[^\s]*$)/, "" ));
var d = c && a( c );
return d && d.length ? d : b.parent()
}
var d = ".dropdown-backdrop",
e = "[data-toggle=dropdown]",
f = function(b) {
a( b ).on( "click.bs.dropdown", this.toggle )
};
f.prototype.toggle = function(d) {
var e = a( this );
if ( ! e.is( ".disabled, :disabled" )) {
var f = c( e ),
g = f.hasClass( "open" );
if (b(), ! g) {
"ontouchstart" in document.documentElement && ! f.closest( ".navbar-nav" ).length && a( '<div class="dropdown-backdrop"/>' ).insertAfter( a( this ) ).on( "click", b );
var h = {
relatedTarget: this
};
if (f.trigger( d = a.Event( "show.bs.dropdown", h ) ), d.isDefaultPrevented()) {
return;
}
f.toggleClass( "open" ).trigger( "shown.bs.dropdown", h ), e.focus()
}
return ! 1
}
}, f.prototype.keydown = function(b) {
if (/(38|40|27)/.test( b.keyCode )) {
var d = a( this );
if (b.preventDefault(), b.stopPropagation(), ! d.is( ".disabled, :disabled" )) {
var f = c( d ),
g = f.hasClass( "open" );
if ( ! g || g && 27 == b.keyCode) {
return 27 == b.which && f.find( e ).focus(), d.click();
}
var h = " li:not(.divider):visible a",
i = f.find( "[role=menu]" + h + ", [role=listbox]" + h );
if (i.length) {
var j = i.index( i.filter( ":focus" ) );
38 == b.keyCode && j > 0 && j--, 40 == b.keyCode && j < i.length - 1 && j++, ~j || (j = 0), i.eq( j ).focus()
}
}
}
};
var g = a.fn.dropdown;
a.fn.dropdown = function(b) {
return this.each(
function() {
var c = a( this ),
d = c.data( "bs.dropdown" );
d || c.data( "bs.dropdown", d = new f( this ) ), "string" == typeof b && d[b].call( c )
}
)
}, a.fn.dropdown.Constructor = f, a.fn.dropdown.noConflict = function() {
return a.fn.dropdown = g, this
}, a( document ).on( "click.bs.dropdown.data-api", b ).on(
"click.bs.dropdown.data-api", ".dropdown form", function(a) {
a.stopPropagation()
}
).on( "click.bs.dropdown.data-api", e, f.prototype.toggle ).on( "keydown.bs.dropdown.data-api", e + ", [role=menu], [role=listbox]", f.prototype.keydown )
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.options = c, this.$element = a( b ), this.$backdrop = this.isShown = null, this.options.remote && this.$element.find( ".modal-content" ).load(
this.options.remote, a.proxy(
function() {
this.$element.trigger( "loaded.bs.modal" )
}, this
)
)
};
b.DEFAULTS = {
backdrop: ! 0,
keyboard: ! 0,
show: ! 0
}, b.prototype.toggle = function(a) {
return this[this.isShown ? "hide" : "show"](a)
}, b.prototype.show = function(b) {
var c = this,
d = a.Event(
"show.bs.modal", {
relatedTarget: b
}
);
this.$element.trigger( d ), this.isShown || d.isDefaultPrevented() || (this.isShown = ! 0, this.escape(), this.$element.on( "click.dismiss.bs.modal", '[data-dismiss="modal"]', a.proxy( this.hide, this ) ), this.backdrop(
function() {
var d = a.support.transition && c.$element.hasClass( "fade" );
c.$element.parent().length || c.$element.appendTo( document.body ), c.$element.show().scrollTop( 0 ), d && c.$element[0].offsetWidth, c.$element.addClass( "in" ).attr( "aria-hidden", ! 1 ), c.enforceFocus();
var e = a.Event(
"shown.bs.modal", {
relatedTarget: b
}
);
d ? c.$element.find( ".modal-dialog" ).one(
a.support.transition.end, function() {
c.$element.focus().trigger( e )
}
).emulateTransitionEnd( 300 ) : c.$element.focus().trigger( e )
}
))
}, b.prototype.hide = function(b) {
b && b.preventDefault(), b = a.Event( "hide.bs.modal" ), this.$element.trigger( b ), this.isShown && ! b.isDefaultPrevented() && (this.isShown = ! 1, this.escape(), a( document ).off( "focusin.bs.modal" ), this.$element.removeClass( "in" ).attr( "aria-hidden", ! 0 ).off( "click.dismiss.bs.modal" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$element.one( a.support.transition.end, a.proxy( this.hideModal, this ) ).emulateTransitionEnd( 300 ) : this.hideModal())
}, b.prototype.enforceFocus = function() {
a( document ).off( "focusin.bs.modal" ).on(
"focusin.bs.modal", a.proxy(
function(a) {
this.$element[0] === a.target || this.$element.has( a.target ).length || this.$element.focus()
}, this
)
)
}, b.prototype.escape = function() {
this.isShown && this.options.keyboard ? this.$element.on(
"keyup.dismiss.bs.modal", a.proxy(
function(a) {
27 == a.which && this.hide()
}, this
)
) : this.isShown || this.$element.off( "keyup.dismiss.bs.modal" )
}, b.prototype.hideModal = function() {
var a = this;
this.$element.hide(), this.backdrop(
function() {
a.removeBackdrop(), a.$element.trigger( "hidden.bs.modal" )
}
)
}, b.prototype.removeBackdrop = function() {
this.$backdrop && this.$backdrop.remove(), this.$backdrop = null
}, b.prototype.backdrop = function(b) {
var c = this.$element.hasClass( "fade" ) ? "fade" : "";
if (this.isShown && this.options.backdrop) {
var d = a.support.transition && c;
if (this.$backdrop = a( '<div class="modal-backdrop ' + c + '" />' ).appendTo( document.body ), this.$element.on(
"click.dismiss.bs.modal", a.proxy(
function(a) {
a.target === a.currentTarget && ("static" == this.options.backdrop ? this.$element[0].focus.call( this.$element[0] ) : this.hide.call( this ))
}, this
)
), d && this.$backdrop[0].offsetWidth, this.$backdrop.addClass( "in" ), ! b) {
return;
}
d ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()
} else {
! this.isShown && this.$backdrop ? (this.$backdrop.removeClass( "in" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()) : b && b()
}
};
var c = a.fn.modal;
a.fn.modal = function(c, d) {
return this.each(
function() {
var e = a( this ),
f = e.data( "bs.modal" ),
g = a.extend( {}, b.DEFAULTS, e.data(), "object" == typeof c && c );
f || e.data( "bs.modal", f = new b( this, g ) ), "string" == typeof c ? f[c](d) : g.show && f.show( d )
}
)
}, a.fn.modal.Constructor = b, a.fn.modal.noConflict = function() {
return a.fn.modal = c, this
}, a( document ).on(
"click.bs.modal.data-api", '[data-toggle="modal"]', function(b) {
var c = a( this ),
d = c.attr( "href" ),
e = a( c.attr( "data-target" ) || d && d.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = e.data( "bs.modal" ) ? "toggle" : a.extend(
{
remote: ! / # / .test( d ) && d
}, e.data(), c.data()
);
c.is( "a" ) && b.preventDefault(), e.modal( f, this ).one(
"hide", function() {
c.is( ":visible" ) && c.focus()
}
)
}
), a( document ).on(
"show.bs.modal", ".modal", function() {
a( document.body ).addClass( "modal-open" )
}
).on(
"hidden.bs.modal", ".modal", function() {
a( document.body ).removeClass( "modal-open" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.type = this.options = this.enabled = this.timeout = this.hoverState = this.$element = null, this.init( "tooltip", a, b )
};
b.DEFAULTS = {
animation: ! 0,
placement: "top",
selector: ! 1,
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
trigger: "hover focus",
title: "",
delay: 0,
html: ! 1,
container: ! 1
}, b.prototype.init = function(b, c, d) {
this.enabled = ! 0, this.type = b, this.$element = a( c ), this.options = this.getOptions( d );
for (var e = this.options.trigger.split( " " ), f = e.length; f--;) {
var g = e[f];
if ("click" == g) {
this.$element.on( "click." + this.type, this.options.selector, a.proxy( this.toggle, this ) );
} else if ("manual" != g) {
var h = "hover" == g ? "mouseenter" : "focusin",
i = "hover" == g ? "mouseleave" : "focusout";
this.$element.on( h + "." + this.type, this.options.selector, a.proxy( this.enter, this ) ), this.$element.on( i + "." + this.type, this.options.selector, a.proxy( this.leave, this ) )
}
}
this.options.selector ? this._options = a.extend(
{}, this.options, {
trigger: "manual",
selector: ""
}
) : this.fixTitle()
}, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.getOptions = function(b) {
return b = a.extend( {}, this.getDefaults(), this.$element.data(), b ), b.delay && "number" == typeof b.delay && (b.delay = {
show: b.delay,
hide: b.delay
}), b
}, b.prototype.getDelegateOptions = function() {
var b = {},
c = this.getDefaults();
return this._options && a.each(
this._options, function(a, d) {
c[a] != d && (b[a] = d)
}
), b
}, b.prototype.enter = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "in", c.options.delay && c.options.delay.show ? void(
c.timeout = setTimeout(
function() {
"in" == c.hoverState && c.show()
}, c.options.delay.show
)
) : c.show()
}, b.prototype.leave = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "out", c.options.delay && c.options.delay.hide ? void(
c.timeout = setTimeout(
function() {
"out" == c.hoverState && c.hide()
}, c.options.delay.hide
)
) : c.hide()
}, b.prototype.show = function() {
var b = a.Event( "show.bs." + this.type );
if (this.hasContent() && this.enabled) {
if (this.$element.trigger( b ), b.isDefaultPrevented()) {
return;
}
var c = this,
d = this.tip();
this.setContent(), this.options.animation && d.addClass( "fade" );
var e = "function" == typeof this.options.placement ? this.options.placement.call( this, d[0], this.$element[0] ) : this.options.placement,
f = /\s?auto?\s?/i,
g = f.test( e );
g && (e = e.replace( f, "" ) || "top"), d.detach().css(
{
top: 0,
left: 0,
display: "block"
}
).addClass( e ), this.options.container ? d.appendTo( this.options.container ) : d.insertAfter( this.$element );
var h = this.getPosition(),
i = d[0].offsetWidth,
j = d[0].offsetHeight;
if (g) {
var k = this.$element.parent(),
l = e,
m = document.documentElement.scrollTop || document.body.scrollTop,
n = "body" == this.options.container ? window.innerWidth : k.outerWidth(),
o = "body" == this.options.container ? window.innerHeight : k.outerHeight(),
p = "body" == this.options.container ? 0 : k.offset().left;
e = "bottom" == e && h.top + h.height + j - m > o ? "top" : "top" == e && h.top - m - j < 0 ? "bottom" : "right" == e && h.right + i > n ? "left" : "left" == e && h.left - i < p ? "right" : e, d.removeClass( l ).addClass( e )
}
var q = this.getCalculatedOffset( e, h, i, j );
this.applyPlacement( q, e ), this.hoverState = null;
var r = function() {
c.$element.trigger( "shown.bs." + c.type )
};
a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, r ).emulateTransitionEnd( 150 ) : r()
}
}, b.prototype.applyPlacement = function(b, c) {
var d, e = this.tip(),
f = e[0].offsetWidth,
g = e[0].offsetHeight,
h = parseInt( e.css( "margin-top" ), 10 ),
i = parseInt( e.css( "margin-left" ), 10 );
isNaN( h ) && (h = 0), isNaN( i ) && (i = 0), b.top = b.top + h, b.left = b.left + i, a.offset.setOffset(
e[0], a.extend(
{
using: function(a) {
e.css(
{
top: Math.round( a.top ),
left: Math.round( a.left )
}
)
}
}, b
), 0
), e.addClass( "in" );
var j = e[0].offsetWidth,
k = e[0].offsetHeight;
if ("top" == c && k != g && (d = ! 0, b.top = b.top + g - k), /bottom|top/.test( c )) {
var l = 0;
b.left < 0 && (l = -2 * b.left, b.left = 0, e.offset( b ), j = e[0].offsetWidth, k = e[0].offsetHeight), this.replaceArrow( l - f + j, j, "left" )
} else {
this.replaceArrow( k - g, k, "top" );
}
d && e.offset( b )
}, b.prototype.replaceArrow = function(a, b, c) {
this.arrow().css( c, a ? 50 * (1 - a / b) + "%" : "" )
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle();
a.find( ".tooltip-inner" )[this.options.html ? "html" : "text"](b), a.removeClass( "fade in top bottom left right" )
}, b.prototype.hide = function() {
function b() {
"in" != c.hoverState && d.detach(), c.$element.trigger( "hidden.bs." + c.type )
}
var c = this,
d = this.tip(),
e = a.Event( "hide.bs." + this.type );
return this.$element.trigger( e ), e.isDefaultPrevented() ? void 0 : (d.removeClass( "in" ), a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b(), this.hoverState = null, this)
}, b.prototype.fixTitle = function() {
var a = this.$element;
(a.attr( "title" ) || "string" != typeof a.attr( "data-original-title" )) && a.attr( "data-original-title", a.attr( "title" ) || "" ).attr( "title", "" )
}, b.prototype.hasContent = function() {
return this.getTitle()
}, b.prototype.getPosition = function() {
var b = this.$element[0];
return a.extend(
{}, "function" == typeof b.getBoundingClientRect ? b.getBoundingClientRect() : {
width: b.offsetWidth,
height: b.offsetHeight
}, this.$element.offset()
)
}, b.prototype.getCalculatedOffset = function(a, b, c, d) {
return "bottom" == a ? {
top: b.top + b.height,
left: b.left + b.width / 2 - c / 2
} : "top" == a ? {
top: b.top - d,
left: b.left + b.width / 2 - c / 2
} : "left" == a ? {
top: b.top + b.height / 2 - d / 2,
left: b.left - c
} : {
top: b.top + b.height / 2 - d / 2,
left: b.left + b.width
}
}, b.prototype.getTitle = function() {
var a, b = this.$element,
c = this.options;
return a = b.attr( "data-original-title" ) || ("function" == typeof c.title ? c.title.call( b[0] ) : c.title)
}, b.prototype.tip = function() {
return this.$tip = this.$tip || a( this.options.template )
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".tooltip-arrow" )
}, b.prototype.validate = function() {
this.$element[0].parentNode || (this.hide(), this.$element = null, this.options = null)
}, b.prototype.enable = function() {
this.enabled = ! 0
}, b.prototype.disable = function() {
this.enabled = ! 1
}, b.prototype.toggleEnabled = function() {
this.enabled = ! this.enabled
}, b.prototype.toggle = function(b) {
var c = b ? a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type ) : this;
c.tip().hasClass( "in" ) ? c.leave( c ) : c.enter( c )
}, b.prototype.destroy = function() {
clearTimeout( this.timeout ), this.hide().$element.off( "." + this.type ).removeData( "bs." + this.type )
};
var c = a.fn.tooltip;
a.fn.tooltip = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tooltip" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.tooltip", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.tooltip.Constructor = b, a.fn.tooltip.noConflict = function() {
return a.fn.tooltip = c, this
}
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.init( "popover", a, b )
};
if ( ! a.fn.tooltip) {
throw new Error( "Popover requires tooltip.js" );
}
b.DEFAULTS = a.extend(
{}, a.fn.tooltip.Constructor.DEFAULTS, {
placement: "right",
trigger: "click",
content: "",
template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
}
), b.prototype = a.extend( {}, a.fn.tooltip.Constructor.prototype ), b.prototype.constructor = b, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle(),
c = this.getContent();
a.find( ".popover-title" )[this.options.html ? "html" : "text"](b), a.find( ".popover-content" )[this.options.html ? "string" == typeof c ? "html" : "append" : "text"](c), a.removeClass( "fade top bottom left right in" ), a.find( ".popover-title" ).html() || a.find( ".popover-title" ).hide()
}, b.prototype.hasContent = function() {
return this.getTitle() || this.getContent()
}, b.prototype.getContent = function() {
var a = this.$element,
b = this.options;
return a.attr( "data-content" ) || ("function" == typeof b.content ? b.content.call( a[0] ) : b.content)
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".arrow" )
}, b.prototype.tip = function() {
return this.$tip || (this.$tip = a( this.options.template )), this.$tip
};
var c = a.fn.popover;
a.fn.popover = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.popover" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.popover", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.popover.Constructor = b, a.fn.popover.noConflict = function() {
return a.fn.popover = c, this
}
}(jQuery), + function(a) {
"use strict";
function b(c, d) {
var e, f = a.proxy( this.process, this );
this.$element = a( a( c ).is( "body" ) ? window : c ), this.$body = a( "body" ), this.$scrollElement = this.$element.on( "scroll.bs.scroll-spy.data-api", f ), this.options = a.extend( {}, b.DEFAULTS, d ), this.selector = (this.options.target || (e = a( c ).attr( "href" )) && e.replace( /.*(?=#[^\s]+$)/, "" ) || "") + " .nav li > a", this.offsets = a( [] ), this.targets = a( [] ), this.activeTarget = null, this.refresh(), this.process()
}
b.DEFAULTS = {
offset: 10
}, b.prototype.refresh = function() {
var b = this.$element[0] == window ? "offset" : "position";
this.offsets = a( [] ), this.targets = a( [] ); {
var c = this;
this.$body.find( this.selector ).map(
function() {
var d = a( this ),
e = d.data( "target" ) || d.attr( "href" ),
f = /^#./.test( e ) && a( e );
return f && f.length && f.is( ":visible" ) && [
[f[b]().top + ( ! a.isWindow( c.$scrollElement.get( 0 ) ) && c.$scrollElement.scrollTop()), e]
] || null
}
).sort(
function(a, b) {
return a[0] - b[0]
}
).each(
function() {
c.offsets.push( this[0] ), c.targets.push( this[1] )
}
)
}
}, b.prototype.process = function() {
var a, b = this.$scrollElement.scrollTop() + this.options.offset,
c = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight,
d = c - this.$scrollElement.height(),
e = this.offsets,
f = this.targets,
g = this.activeTarget;
if (b >= d) {
return g != (a = f.last()[0]) && this.activate( a );
}
if (g && b <= e[0]) {
return g != (a = f[0]) && this.activate( a );
}
for (a = e.length; a--;) {
g != f[a] && b >= e[a] && ( ! e[a + 1] || b <= e[a + 1]) && this.activate( f[a] )
}
}, b.prototype.activate = function(b) {
this.activeTarget = b, a( this.selector ).parentsUntil( this.options.target, ".active" ).removeClass( "active" );
var c = this.selector + '[data-target="' + b + '"],' + this.selector + '[href="' + b + '"]',
d = a( c ).parents( "li" ).addClass( "active" );
d.parent( ".dropdown-menu" ).length && (d = d.closest( "li.dropdown" ).addClass( "active" )), d.trigger( "activate.bs.scrollspy" )
};
var c = a.fn.scrollspy;
a.fn.scrollspy = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.scrollspy" ),
f = "object" == typeof c && c;
e || d.data( "bs.scrollspy", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.scrollspy.Constructor = b, a.fn.scrollspy.noConflict = function() {
return a.fn.scrollspy = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="scroll"]' ).each(
function() {
var b = a( this );
b.scrollspy( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b) {
this.element = a( b )
};
b.prototype.show = function() {
var b = this.element,
c = b.closest( "ul:not(.dropdown-menu)" ),
d = b.data( "target" );
if (d || (d = b.attr( "href" ), d = d && d.replace( /.*(?=#[^\s]*$)/, "" )), ! b.parent( "li" ).hasClass( "active" )) {
var e = c.find( ".active:last a" )[0],
f = a.Event(
"show.bs.tab", {
relatedTarget: e
}
);
if (b.trigger( f ), ! f.isDefaultPrevented()) {
var g = a( d );
this.activate( b.parent( "li" ), c ), this.activate(
g, g.parent(), function() {
b.trigger(
{
type: "shown.bs.tab",
relatedTarget: e
}
)
}
)
}
}
}, b.prototype.activate = function(b, c, d) {
function e() {
f.removeClass( "active" ).find( "> .dropdown-menu > .active" ).removeClass( "active" ), b.addClass( "active" ), g ? (b[0].offsetWidth, b.addClass( "in" )) : b.removeClass( "fade" ), b.parent( ".dropdown-menu" ) && b.closest( "li.dropdown" ).addClass( "active" ), d && d()
}
var f = c.find( "> .active" ),
g = d && a.support.transition && f.hasClass( "fade" );
g ? f.one( a.support.transition.end, e ).emulateTransitionEnd( 150 ) : e(), f.removeClass( "in" )
};
var c = a.fn.tab;
a.fn.tab = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tab" );
e || d.data( "bs.tab", e = new b( this ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.tab.Constructor = b, a.fn.tab.noConflict = function() {
return a.fn.tab = c, this
}, a( document ).on(
"click.bs.tab.data-api", '[data-toggle="tab"], [data-toggle="pill"]', function(b) {
b.preventDefault(), a( this ).tab( "show" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.options = a.extend( {}, b.DEFAULTS, d ), this.$window = a( window ).on( "scroll.bs.affix.data-api", a.proxy( this.checkPosition, this ) ).on( "click.bs.affix.data-api", a.proxy( this.checkPositionWithEventLoop, this ) ), this.$element = a( c ), this.affixed = this.unpin = this.pinnedOffset = null, this.checkPosition()
};
b.RESET = "affix affix-top affix-bottom", b.DEFAULTS = {
offset: 0
}, b.prototype.getPinnedOffset = function() {
if (this.pinnedOffset) {
return this.pinnedOffset;
}
this.$element.removeClass( b.RESET ).addClass( "affix" );
var a = this.$window.scrollTop(),
c = this.$element.offset();
return this.pinnedOffset = c.top - a
}, b.prototype.checkPositionWithEventLoop = function() {
setTimeout( a.proxy( this.checkPosition, this ), 1 )
}, b.prototype.checkPosition = function() {
if (this.$element.is( ":visible" )) {
var c = a( document ).height(),
d = this.$window.scrollTop(),
e = this.$element.offset(),
f = this.options.offset,
g = f.top,
h = f.bottom;
"top" == this.affixed && (e.top += d), "object" != typeof f && (h = g = f), "function" == typeof g && (g = f.top( this.$element )), "function" == typeof h && (h = f.bottom( this.$element ));
var i = null != this.unpin && d + this.unpin <= e.top ? ! 1 : null != h && e.top + this.$element.height() >= c - h ? "bottom" : null != g && g >= d ? "top" : ! 1;
if (this.affixed !== i) {
this.unpin && this.$element.css( "top", "" );
var j = "affix" + (i ? "-" + i : ""),
k = a.Event( j + ".bs.affix" );
this.$element.trigger( k ), k.isDefaultPrevented() || (this.affixed = i, this.unpin = "bottom" == i ? this.getPinnedOffset() : null, this.$element.removeClass( b.RESET ).addClass( j ).trigger( a.Event( j.replace( "affix", "affixed" ) ) ), "bottom" == i && this.$element.offset(
{
top: c - h - this.$element.height()
}
))
}
}
};
var c = a.fn.affix;
a.fn.affix = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.affix" ),
f = "object" == typeof c && c;
e || d.data( "bs.affix", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.affix.Constructor = b, a.fn.affix.noConflict = function() {
return a.fn.affix = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="affix"]' ).each(
function() {
var b = a( this ),
c = b.data();
c.offset = c.offset || {}, c.offsetBottom && (c.offset.bottom = c.offsetBottom), c.offsetTop && (c.offset.top = c.offsetTop), b.affix( c )
}
)
}
)
}(jQuery);
home/xbodynamge/dev/wp-content/themes/zerif-lite/js/bootstrap.js 0000644 00000113037 15113777324 0021052 0 ustar 00 /*!
* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if ("undefined" == typeof jQuery) {
throw new Error( "Bootstrap's JavaScript requires jQuery" );
} + function(a) {
"use strict";
function b() {
var a = document.createElement( "bootstrap" ),
b = {
WebkitTransition: "webkitTransitionEnd",
MozTransition: "transitionend",
OTransition: "oTransitionEnd otransitionend",
transition: "transitionend"
};
for (var c in b) {
if (void 0 !== a.style[c]) {
return
end: b[c]
}
};
return ! 1
}
a.fn.emulateTransitionEnd = function(b) {
var c = ! 1,
d = this;
a( this ).one(
a.support.transition.end, function() {
c = ! 0
}
);
var e = function() {
c || a( d ).trigger( a.support.transition.end )
};
return setTimeout( e, b ), this
}, a(
function() {
a.support.transition = b()
}
)
}(jQuery), + function(a) {
"use strict";
var b = '[data-dismiss="alert"]',
c = function(c) {
a( c ).on( "click", b, this.close )
};
c.prototype.close = function(b) {
function c() {
f.trigger( "closed.bs.alert" ).remove()
}
var d = a( this ),
e = d.attr( "data-target" );
e || (e = d.attr( "href" ), e = e && e.replace( /.*(?=#[^\s]*$)/, "" ));
var f = a( e );
b && b.preventDefault(), f.length || (f = d.hasClass( "alert" ) ? d : d.parent()), f.trigger( b = a.Event( "close.bs.alert" ) ), b.isDefaultPrevented() || (f.removeClass( "in" ), a.support.transition && f.hasClass( "fade" ) ? f.one( a.support.transition.end, c ).emulateTransitionEnd( 150 ) : c())
};
var d = a.fn.alert;
a.fn.alert = function(b) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.alert" );
e || d.data( "bs.alert", e = new c( this ) ), "string" == typeof b && e[b].call( d )
}
)
}, a.fn.alert.Constructor = c, a.fn.alert.noConflict = function() {
return a.fn.alert = d, this
}, a( document ).on( "click.bs.alert.data-api", b, c.prototype.close )
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.isLoading = ! 1
};
b.DEFAULTS = {
loadingText: "loading..."
}, b.prototype.setState = function(b) {
var c = "disabled",
d = this.$element,
e = d.is( "input" ) ? "val" : "html",
f = d.data();
b += "Text", f.resetText || d.data( "resetText", d[e]() ), d[e](f[b] || this.options[b]), setTimeout(
a.proxy(
function() {
"loadingText" == b ? (this.isLoading = ! 0, d.addClass( c ).attr( c, c )) : this.isLoading && (this.isLoading = ! 1, d.removeClass( c ).removeAttr( c ))
}, this
), 0
)
}, b.prototype.toggle = function() {
var a = ! 0,
b = this.$element.closest( '[data-toggle="buttons"]' );
if (b.length) {
var c = this.$element.find( "input" );
"radio" == c.prop( "type" ) && (c.prop( "checked" ) && this.$element.hasClass( "active" ) ? a = ! 1 : b.find( ".active" ).removeClass( "active" )), a && c.prop( "checked", ! this.$element.hasClass( "active" ) ).trigger( "change" )
}
a && this.$element.toggleClass( "active" )
};
var c = a.fn.button;
a.fn.button = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.button" ),
f = "object" == typeof c && c;
e || d.data( "bs.button", e = new b( this, f ) ), "toggle" == c ? e.toggle() : c && e.setState( c )
}
)
}, a.fn.button.Constructor = b, a.fn.button.noConflict = function() {
return a.fn.button = c, this
}, a( document ).on(
"click.bs.button.data-api", "[data-toggle^=button]", function(b) {
var c = a( b.target );
c.hasClass( "btn" ) || (c = c.closest( ".btn" )), c.button( "toggle" ), b.preventDefault()
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.$element = a( b ), this.$indicators = this.$element.find( ".carousel-indicators" ), this.options = c, this.paused = this.sliding = this.interval = this.$active = this.$items = null, "hover" == this.options.pause && this.$element.on( "mouseenter", a.proxy( this.pause, this ) ).on( "mouseleave", a.proxy( this.cycle, this ) )
};
b.DEFAULTS = {
interval: 5e3,
pause: "hover",
wrap: ! 0
}, b.prototype.cycle = function(b) {
return b || (this.paused = ! 1), this.interval && clearInterval( this.interval ), this.options.interval && ! this.paused && (this.interval = setInterval( a.proxy( this.next, this ), this.options.interval )), this
}, b.prototype.getActiveIndex = function() {
return this.$active = this.$element.find( ".item.active" ), this.$items = this.$active.parent().children(), this.$items.index( this.$active )
}, b.prototype.to = function(b) {
var c = this,
d = this.getActiveIndex();
return b > this.$items.length - 1 || 0 > b ? void 0 : this.sliding ? this.$element.one(
"slid.bs.carousel", function() {
c.to( b )
}
) : d == b ? this.pause().cycle() : this.slide( b > d ? "next" : "prev", a( this.$items[b] ) )
}, b.prototype.pause = function(b) {
return b || (this.paused = ! 0), this.$element.find( ".next, .prev" ).length && a.support.transition && (this.$element.trigger( a.support.transition.end ), this.cycle( ! 0 )), this.interval = clearInterval( this.interval ), this
}, b.prototype.next = function() {
return this.sliding ? void 0 : this.slide( "next" )
}, b.prototype.prev = function() {
return this.sliding ? void 0 : this.slide( "prev" )
}, b.prototype.slide = function(b, c) {
var d = this.$element.find( ".item.active" ),
e = c || d[b](),
f = this.interval,
g = "next" == b ? "left" : "right",
h = "next" == b ? "first" : "last",
i = this;
if ( ! e.length) {
if ( ! this.options.wrap) {
return;
}
e = this.$element.find( ".item" )[h]()
}
if (e.hasClass( "active" )) {
return this.sliding = ! 1;
}
var j = a.Event(
"slide.bs.carousel", {
relatedTarget: e[0],
direction: g
}
);
return this.$element.trigger( j ), j.isDefaultPrevented() ? void 0 : (this.sliding = ! 0, f && this.pause(), this.$indicators.length && (this.$indicators.find( ".active" ).removeClass( "active" ), this.$element.one(
"slid.bs.carousel", function() {
var b = a( i.$indicators.children()[i.getActiveIndex()] );
b && b.addClass( "active" )
}
)), a.support.transition && this.$element.hasClass( "slide" ) ? (e.addClass( b ), e[0].offsetWidth, d.addClass( g ), e.addClass( g ), d.one(
a.support.transition.end, function() {
e.removeClass( [b, g].join( " " ) ).addClass( "active" ), d.removeClass( ["active", g].join( " " ) ), i.sliding = ! 1, setTimeout(
function() {
i.$element.trigger( "slid.bs.carousel" )
}, 0
)
}
).emulateTransitionEnd( 1e3 * d.css( "transition-duration" ).slice( 0, -1 ) )) : (d.removeClass( "active" ), e.addClass( "active" ), this.sliding = ! 1, this.$element.trigger( "slid.bs.carousel" )), f && this.cycle(), this)
};
var c = a.fn.carousel;
a.fn.carousel = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.carousel" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c ),
g = "string" == typeof c ? c : f.slide;
e || d.data( "bs.carousel", e = new b( this, f ) ), "number" == typeof c ? e.to( c ) : g ? e[g]() : f.interval && e.pause().cycle()
}
)
}, a.fn.carousel.Constructor = b, a.fn.carousel.noConflict = function() {
return a.fn.carousel = c, this
}, a( document ).on(
"click.bs.carousel.data-api", "[data-slide], [data-slide-to]", function(b) {
var c, d = a( this ),
e = a( d.attr( "data-target" ) || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = a.extend( {}, e.data(), d.data() ),
g = d.attr( "data-slide-to" );
g && (f.interval = ! 1), e.carousel( f ), (g = d.attr( "data-slide-to" )) && e.data( "bs.carousel" ).to( g ), b.preventDefault()
}
), a( window ).on(
"load", function() {
a( '[data-ride="carousel"]' ).each(
function() {
var b = a( this );
b.carousel( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.transitioning = null, this.options.parent && (this.$parent = a( this.options.parent )), this.options.toggle && this.toggle()
};
b.DEFAULTS = {
toggle: ! 0
}, b.prototype.dimension = function() {
var a = this.$element.hasClass( "width" );
return a ? "width" : "height"
}, b.prototype.show = function() {
if ( ! this.transitioning && ! this.$element.hasClass( "in" )) {
var b = a.Event( "show.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.$parent && this.$parent.find( "> .panel > .in" );
if (c && c.length) {
var d = c.data( "bs.collapse" );
if (d && d.transitioning) {
return;
}
c.collapse( "hide" ), d || c.data( "bs.collapse", null )
}
var e = this.dimension();
this.$element.removeClass( "collapse" ).addClass( "collapsing" )[e](0), this.transitioning = 1;
var f = function() {
this.$element.removeClass( "collapsing" ).addClass( "collapse in" )[e]("auto"), this.transitioning = 0, this.$element.trigger( "shown.bs.collapse" )
};
if ( ! a.support.transition) {
return f.call( this );
}
var g = a.camelCase( ["scroll", e].join( "-" ) );
this.$element.one( a.support.transition.end, a.proxy( f, this ) ).emulateTransitionEnd( 350 )[e](this.$element[0][g])
}
}
}, b.prototype.hide = function() {
if ( ! this.transitioning && this.$element.hasClass( "in" )) {
var b = a.Event( "hide.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.dimension();
this.$element[c](this.$element[c]())[0].offsetHeight, this.$element.addClass( "collapsing" ).removeClass( "collapse" ).removeClass( "in" ), this.transitioning = 1;
var d = function() {
this.transitioning = 0, this.$element.trigger( "hidden.bs.collapse" ).removeClass( "collapsing" ).addClass( "collapse" )
};
return a.support.transition ? void this.$element[c](0).one( a.support.transition.end, a.proxy( d, this ) ).emulateTransitionEnd( 350 ) : d.call( this )
}
}
}, b.prototype.toggle = function() {
this[this.$element.hasClass( "in" ) ? "hide" : "show"]()
};
var c = a.fn.collapse;
a.fn.collapse = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.collapse" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c );
! e && f.toggle && "show" == c && (c = ! c), e || d.data( "bs.collapse", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.collapse.Constructor = b, a.fn.collapse.noConflict = function() {
return a.fn.collapse = c, this
}, a( document ).on(
"click.bs.collapse.data-api", "[data-toggle=collapse]", function(b) {
var c, d = a( this ),
e = d.attr( "data-target" ) || b.preventDefault() || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ),
f = a( e ),
g = f.data( "bs.collapse" ),
h = g ? "toggle" : d.data(),
i = d.attr( "data-parent" ),
j = i && a( i );
g && g.transitioning || (j && j.find( '[data-toggle=collapse][data-parent="' + i + '"]' ).not( d ).addClass( "collapsed" ), d[f.hasClass( "in" ) ? "addClass" : "removeClass"]("collapsed")), f.collapse( h )
}
)
}(jQuery), + function(a) {
"use strict";
function b(b) {
a( d ).remove(), a( e ).each(
function() {
var d = c( a( this ) ),
e = {
relatedTarget: this
};
d.hasClass( "open" ) && (d.trigger( b = a.Event( "hide.bs.dropdown", e ) ), b.isDefaultPrevented() || d.removeClass( "open" ).trigger( "hidden.bs.dropdown", e ))
}
)
}
function c(b) {
var c = b.attr( "data-target" );
c || (c = b.attr( "href" ), c = c && /#[A-Za-z]/.test( c ) && c.replace( /.*(?=#[^\s]*$)/, "" ));
var d = c && a( c );
return d && d.length ? d : b.parent()
}
var d = ".dropdown-backdrop",
e = "[data-toggle=dropdown]",
f = function(b) {
a( b ).on( "click.bs.dropdown", this.toggle )
};
f.prototype.toggle = function(d) {
var e = a( this );
if ( ! e.is( ".disabled, :disabled" )) {
var f = c( e ),
g = f.hasClass( "open" );
if (b(), ! g) {
"ontouchstart" in document.documentElement && ! f.closest( ".navbar-nav" ).length && a( '<div class="dropdown-backdrop"/>' ).insertAfter( a( this ) ).on( "click", b );
var h = {
relatedTarget: this
};
if (f.trigger( d = a.Event( "show.bs.dropdown", h ) ), d.isDefaultPrevented()) {
return;
}
f.toggleClass( "open" ).trigger( "shown.bs.dropdown", h ), e.focus()
}
return ! 1
}
}, f.prototype.keydown = function(b) {
if (/(38|40|27)/.test( b.keyCode )) {
var d = a( this );
if (b.preventDefault(), b.stopPropagation(), ! d.is( ".disabled, :disabled" )) {
var f = c( d ),
g = f.hasClass( "open" );
if ( ! g || g && 27 == b.keyCode) {
return 27 == b.which && f.find( e ).focus(), d.click();
}
var h = " li:not(.divider):visible a",
i = f.find( "[role=menu]" + h + ", [role=listbox]" + h );
if (i.length) {
var j = i.index( i.filter( ":focus" ) );
38 == b.keyCode && j > 0 && j--, 40 == b.keyCode && j < i.length - 1 && j++, ~j || (j = 0), i.eq( j ).focus()
}
}
}
};
var g = a.fn.dropdown;
a.fn.dropdown = function(b) {
return this.each(
function() {
var c = a( this ),
d = c.data( "bs.dropdown" );
d || c.data( "bs.dropdown", d = new f( this ) ), "string" == typeof b && d[b].call( c )
}
)
}, a.fn.dropdown.Constructor = f, a.fn.dropdown.noConflict = function() {
return a.fn.dropdown = g, this
}, a( document ).on( "click.bs.dropdown.data-api", b ).on(
"click.bs.dropdown.data-api", ".dropdown form", function(a) {
a.stopPropagation()
}
).on( "click.bs.dropdown.data-api", e, f.prototype.toggle ).on( "keydown.bs.dropdown.data-api", e + ", [role=menu], [role=listbox]", f.prototype.keydown )
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.options = c, this.$element = a( b ), this.$backdrop = this.isShown = null, this.options.remote && this.$element.find( ".modal-content" ).load(
this.options.remote, a.proxy(
function() {
this.$element.trigger( "loaded.bs.modal" )
}, this
)
)
};
b.DEFAULTS = {
backdrop: ! 0,
keyboard: ! 0,
show: ! 0
}, b.prototype.toggle = function(a) {
return this[this.isShown ? "hide" : "show"](a)
}, b.prototype.show = function(b) {
var c = this,
d = a.Event(
"show.bs.modal", {
relatedTarget: b
}
);
this.$element.trigger( d ), this.isShown || d.isDefaultPrevented() || (this.isShown = ! 0, this.escape(), this.$element.on( "click.dismiss.bs.modal", '[data-dismiss="modal"]', a.proxy( this.hide, this ) ), this.backdrop(
function() {
var d = a.support.transition && c.$element.hasClass( "fade" );
c.$element.parent().length || c.$element.appendTo( document.body ), c.$element.show().scrollTop( 0 ), d && c.$element[0].offsetWidth, c.$element.addClass( "in" ).attr( "aria-hidden", ! 1 ), c.enforceFocus();
var e = a.Event(
"shown.bs.modal", {
relatedTarget: b
}
);
d ? c.$element.find( ".modal-dialog" ).one(
a.support.transition.end, function() {
c.$element.focus().trigger( e )
}
).emulateTransitionEnd( 300 ) : c.$element.focus().trigger( e )
}
))
}, b.prototype.hide = function(b) {
b && b.preventDefault(), b = a.Event( "hide.bs.modal" ), this.$element.trigger( b ), this.isShown && ! b.isDefaultPrevented() && (this.isShown = ! 1, this.escape(), a( document ).off( "focusin.bs.modal" ), this.$element.removeClass( "in" ).attr( "aria-hidden", ! 0 ).off( "click.dismiss.bs.modal" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$element.one( a.support.transition.end, a.proxy( this.hideModal, this ) ).emulateTransitionEnd( 300 ) : this.hideModal())
}, b.prototype.enforceFocus = function() {
a( document ).off( "focusin.bs.modal" ).on(
"focusin.bs.modal", a.proxy(
function(a) {
this.$element[0] === a.target || this.$element.has( a.target ).length || this.$element.focus()
}, this
)
)
}, b.prototype.escape = function() {
this.isShown && this.options.keyboard ? this.$element.on(
"keyup.dismiss.bs.modal", a.proxy(
function(a) {
27 == a.which && this.hide()
}, this
)
) : this.isShown || this.$element.off( "keyup.dismiss.bs.modal" )
}, b.prototype.hideModal = function() {
var a = this;
this.$element.hide(), this.backdrop(
function() {
a.removeBackdrop(), a.$element.trigger( "hidden.bs.modal" )
}
)
}, b.prototype.removeBackdrop = function() {
this.$backdrop && this.$backdrop.remove(), this.$backdrop = null
}, b.prototype.backdrop = function(b) {
var c = this.$element.hasClass( "fade" ) ? "fade" : "";
if (this.isShown && this.options.backdrop) {
var d = a.support.transition && c;
if (this.$backdrop = a( '<div class="modal-backdrop ' + c + '" />' ).appendTo( document.body ), this.$element.on(
"click.dismiss.bs.modal", a.proxy(
function(a) {
a.target === a.currentTarget && ("static" == this.options.backdrop ? this.$element[0].focus.call( this.$element[0] ) : this.hide.call( this ))
}, this
)
), d && this.$backdrop[0].offsetWidth, this.$backdrop.addClass( "in" ), ! b) {
return;
}
d ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()
} else {
! this.isShown && this.$backdrop ? (this.$backdrop.removeClass( "in" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()) : b && b()
}
};
var c = a.fn.modal;
a.fn.modal = function(c, d) {
return this.each(
function() {
var e = a( this ),
f = e.data( "bs.modal" ),
g = a.extend( {}, b.DEFAULTS, e.data(), "object" == typeof c && c );
f || e.data( "bs.modal", f = new b( this, g ) ), "string" == typeof c ? f[c](d) : g.show && f.show( d )
}
)
}, a.fn.modal.Constructor = b, a.fn.modal.noConflict = function() {
return a.fn.modal = c, this
}, a( document ).on(
"click.bs.modal.data-api", '[data-toggle="modal"]', function(b) {
var c = a( this ),
d = c.attr( "href" ),
e = a( c.attr( "data-target" ) || d && d.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = e.data( "bs.modal" ) ? "toggle" : a.extend(
{
remote: ! / # / .test( d ) && d
}, e.data(), c.data()
);
c.is( "a" ) && b.preventDefault(), e.modal( f, this ).one(
"hide", function() {
c.is( ":visible" ) && c.focus()
}
)
}
), a( document ).on(
"show.bs.modal", ".modal", function() {
a( document.body ).addClass( "modal-open" )
}
).on(
"hidden.bs.modal", ".modal", function() {
a( document.body ).removeClass( "modal-open" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.type = this.options = this.enabled = this.timeout = this.hoverState = this.$element = null, this.init( "tooltip", a, b )
};
b.DEFAULTS = {
animation: ! 0,
placement: "top",
selector: ! 1,
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
trigger: "hover focus",
title: "",
delay: 0,
html: ! 1,
container: ! 1
}, b.prototype.init = function(b, c, d) {
this.enabled = ! 0, this.type = b, this.$element = a( c ), this.options = this.getOptions( d );
for (var e = this.options.trigger.split( " " ), f = e.length; f--;) {
var g = e[f];
if ("click" == g) {
this.$element.on( "click." + this.type, this.options.selector, a.proxy( this.toggle, this ) );
} else if ("manual" != g) {
var h = "hover" == g ? "mouseenter" : "focusin",
i = "hover" == g ? "mouseleave" : "focusout";
this.$element.on( h + "." + this.type, this.options.selector, a.proxy( this.enter, this ) ), this.$element.on( i + "." + this.type, this.options.selector, a.proxy( this.leave, this ) )
}
}
this.options.selector ? this._options = a.extend(
{}, this.options, {
trigger: "manual",
selector: ""
}
) : this.fixTitle()
}, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.getOptions = function(b) {
return b = a.extend( {}, this.getDefaults(), this.$element.data(), b ), b.delay && "number" == typeof b.delay && (b.delay = {
show: b.delay,
hide: b.delay
}), b
}, b.prototype.getDelegateOptions = function() {
var b = {},
c = this.getDefaults();
return this._options && a.each(
this._options, function(a, d) {
c[a] != d && (b[a] = d)
}
), b
}, b.prototype.enter = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "in", c.options.delay && c.options.delay.show ? void(
c.timeout = setTimeout(
function() {
"in" == c.hoverState && c.show()
}, c.options.delay.show
)
) : c.show()
}, b.prototype.leave = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "out", c.options.delay && c.options.delay.hide ? void(
c.timeout = setTimeout(
function() {
"out" == c.hoverState && c.hide()
}, c.options.delay.hide
)
) : c.hide()
}, b.prototype.show = function() {
var b = a.Event( "show.bs." + this.type );
if (this.hasContent() && this.enabled) {
if (this.$element.trigger( b ), b.isDefaultPrevented()) {
return;
}
var c = this,
d = this.tip();
this.setContent(), this.options.animation && d.addClass( "fade" );
var e = "function" == typeof this.options.placement ? this.options.placement.call( this, d[0], this.$element[0] ) : this.options.placement,
f = /\s?auto?\s?/i,
g = f.test( e );
g && (e = e.replace( f, "" ) || "top"), d.detach().css(
{
top: 0,
left: 0,
display: "block"
}
).addClass( e ), this.options.container ? d.appendTo( this.options.container ) : d.insertAfter( this.$element );
var h = this.getPosition(),
i = d[0].offsetWidth,
j = d[0].offsetHeight;
if (g) {
var k = this.$element.parent(),
l = e,
m = document.documentElement.scrollTop || document.body.scrollTop,
n = "body" == this.options.container ? window.innerWidth : k.outerWidth(),
o = "body" == this.options.container ? window.innerHeight : k.outerHeight(),
p = "body" == this.options.container ? 0 : k.offset().left;
e = "bottom" == e && h.top + h.height + j - m > o ? "top" : "top" == e && h.top - m - j < 0 ? "bottom" : "right" == e && h.right + i > n ? "left" : "left" == e && h.left - i < p ? "right" : e, d.removeClass( l ).addClass( e )
}
var q = this.getCalculatedOffset( e, h, i, j );
this.applyPlacement( q, e ), this.hoverState = null;
var r = function() {
c.$element.trigger( "shown.bs." + c.type )
};
a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, r ).emulateTransitionEnd( 150 ) : r()
}
}, b.prototype.applyPlacement = function(b, c) {
var d, e = this.tip(),
f = e[0].offsetWidth,
g = e[0].offsetHeight,
h = parseInt( e.css( "margin-top" ), 10 ),
i = parseInt( e.css( "margin-left" ), 10 );
isNaN( h ) && (h = 0), isNaN( i ) && (i = 0), b.top = b.top + h, b.left = b.left + i, a.offset.setOffset(
e[0], a.extend(
{
using: function(a) {
e.css(
{
top: Math.round( a.top ),
left: Math.round( a.left )
}
)
}
}, b
), 0
), e.addClass( "in" );
var j = e[0].offsetWidth,
k = e[0].offsetHeight;
if ("top" == c && k != g && (d = ! 0, b.top = b.top + g - k), /bottom|top/.test( c )) {
var l = 0;
b.left < 0 && (l = -2 * b.left, b.left = 0, e.offset( b ), j = e[0].offsetWidth, k = e[0].offsetHeight), this.replaceArrow( l - f + j, j, "left" )
} else {
this.replaceArrow( k - g, k, "top" );
}
d && e.offset( b )
}, b.prototype.replaceArrow = function(a, b, c) {
this.arrow().css( c, a ? 50 * (1 - a / b) + "%" : "" )
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle();
a.find( ".tooltip-inner" )[this.options.html ? "html" : "text"](b), a.removeClass( "fade in top bottom left right" )
}, b.prototype.hide = function() {
function b() {
"in" != c.hoverState && d.detach(), c.$element.trigger( "hidden.bs." + c.type )
}
var c = this,
d = this.tip(),
e = a.Event( "hide.bs." + this.type );
return this.$element.trigger( e ), e.isDefaultPrevented() ? void 0 : (d.removeClass( "in" ), a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b(), this.hoverState = null, this)
}, b.prototype.fixTitle = function() {
var a = this.$element;
(a.attr( "title" ) || "string" != typeof a.attr( "data-original-title" )) && a.attr( "data-original-title", a.attr( "title" ) || "" ).attr( "title", "" )
}, b.prototype.hasContent = function() {
return this.getTitle()
}, b.prototype.getPosition = function() {
var b = this.$element[0];
return a.extend(
{}, "function" == typeof b.getBoundingClientRect ? b.getBoundingClientRect() : {
width: b.offsetWidth,
height: b.offsetHeight
}, this.$element.offset()
)
}, b.prototype.getCalculatedOffset = function(a, b, c, d) {
return "bottom" == a ? {
top: b.top + b.height,
left: b.left + b.width / 2 - c / 2
} : "top" == a ? {
top: b.top - d,
left: b.left + b.width / 2 - c / 2
} : "left" == a ? {
top: b.top + b.height / 2 - d / 2,
left: b.left - c
} : {
top: b.top + b.height / 2 - d / 2,
left: b.left + b.width
}
}, b.prototype.getTitle = function() {
var a, b = this.$element,
c = this.options;
return a = b.attr( "data-original-title" ) || ("function" == typeof c.title ? c.title.call( b[0] ) : c.title)
}, b.prototype.tip = function() {
return this.$tip = this.$tip || a( this.options.template )
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".tooltip-arrow" )
}, b.prototype.validate = function() {
this.$element[0].parentNode || (this.hide(), this.$element = null, this.options = null)
}, b.prototype.enable = function() {
this.enabled = ! 0
}, b.prototype.disable = function() {
this.enabled = ! 1
}, b.prototype.toggleEnabled = function() {
this.enabled = ! this.enabled
}, b.prototype.toggle = function(b) {
var c = b ? a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type ) : this;
c.tip().hasClass( "in" ) ? c.leave( c ) : c.enter( c )
}, b.prototype.destroy = function() {
clearTimeout( this.timeout ), this.hide().$element.off( "." + this.type ).removeData( "bs." + this.type )
};
var c = a.fn.tooltip;
a.fn.tooltip = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tooltip" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.tooltip", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.tooltip.Constructor = b, a.fn.tooltip.noConflict = function() {
return a.fn.tooltip = c, this
}
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.init( "popover", a, b )
};
if ( ! a.fn.tooltip) {
throw new Error( "Popover requires tooltip.js" );
}
b.DEFAULTS = a.extend(
{}, a.fn.tooltip.Constructor.DEFAULTS, {
placement: "right",
trigger: "click",
content: "",
template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
}
), b.prototype = a.extend( {}, a.fn.tooltip.Constructor.prototype ), b.prototype.constructor = b, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle(),
c = this.getContent();
a.find( ".popover-title" )[this.options.html ? "html" : "text"](b), a.find( ".popover-content" )[this.options.html ? "string" == typeof c ? "html" : "append" : "text"](c), a.removeClass( "fade top bottom left right in" ), a.find( ".popover-title" ).html() || a.find( ".popover-title" ).hide()
}, b.prototype.hasContent = function() {
return this.getTitle() || this.getContent()
}, b.prototype.getContent = function() {
var a = this.$element,
b = this.options;
return a.attr( "data-content" ) || ("function" == typeof b.content ? b.content.call( a[0] ) : b.content)
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".arrow" )
}, b.prototype.tip = function() {
return this.$tip || (this.$tip = a( this.options.template )), this.$tip
};
var c = a.fn.popover;
a.fn.popover = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.popover" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.popover", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.popover.Constructor = b, a.fn.popover.noConflict = function() {
return a.fn.popover = c, this
}
}(jQuery), + function(a) {
"use strict";
function b(c, d) {
var e, f = a.proxy( this.process, this );
this.$element = a( a( c ).is( "body" ) ? window : c ), this.$body = a( "body" ), this.$scrollElement = this.$element.on( "scroll.bs.scroll-spy.data-api", f ), this.options = a.extend( {}, b.DEFAULTS, d ), this.selector = (this.options.target || (e = a( c ).attr( "href" )) && e.replace( /.*(?=#[^\s]+$)/, "" ) || "") + " .nav li > a", this.offsets = a( [] ), this.targets = a( [] ), this.activeTarget = null, this.refresh(), this.process()
}
b.DEFAULTS = {
offset: 10
}, b.prototype.refresh = function() {
var b = this.$element[0] == window ? "offset" : "position";
this.offsets = a( [] ), this.targets = a( [] ); {
var c = this;
this.$body.find( this.selector ).map(
function() {
var d = a( this ),
e = d.data( "target" ) || d.attr( "href" ),
f = /^#./.test( e ) && a( e );
return f && f.length && f.is( ":visible" ) && [
[f[b]().top + ( ! a.isWindow( c.$scrollElement.get( 0 ) ) && c.$scrollElement.scrollTop()), e]
] || null
}
).sort(
function(a, b) {
return a[0] - b[0]
}
).each(
function() {
c.offsets.push( this[0] ), c.targets.push( this[1] )
}
)
}
}, b.prototype.process = function() {
var a, b = this.$scrollElement.scrollTop() + this.options.offset,
c = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight,
d = c - this.$scrollElement.height(),
e = this.offsets,
f = this.targets,
g = this.activeTarget;
if (b >= d) {
return g != (a = f.last()[0]) && this.activate( a );
}
if (g && b <= e[0]) {
return g != (a = f[0]) && this.activate( a );
}
for (a = e.length; a--;) {
g != f[a] && b >= e[a] && ( ! e[a + 1] || b <= e[a + 1]) && this.activate( f[a] )
}
}, b.prototype.activate = function(b) {
this.activeTarget = b, a( this.selector ).parentsUntil( this.options.target, ".active" ).removeClass( "active" );
var c = this.selector + '[data-target="' + b + '"],' + this.selector + '[href="' + b + '"]',
d = a( c ).parents( "li" ).addClass( "active" );
d.parent( ".dropdown-menu" ).length && (d = d.closest( "li.dropdown" ).addClass( "active" )), d.trigger( "activate.bs.scrollspy" )
};
var c = a.fn.scrollspy;
a.fn.scrollspy = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.scrollspy" ),
f = "object" == typeof c && c;
e || d.data( "bs.scrollspy", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.scrollspy.Constructor = b, a.fn.scrollspy.noConflict = function() {
return a.fn.scrollspy = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="scroll"]' ).each(
function() {
var b = a( this );
b.scrollspy( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b) {
this.element = a( b )
};
b.prototype.show = function() {
var b = this.element,
c = b.closest( "ul:not(.dropdown-menu)" ),
d = b.data( "target" );
if (d || (d = b.attr( "href" ), d = d && d.replace( /.*(?=#[^\s]*$)/, "" )), ! b.parent( "li" ).hasClass( "active" )) {
var e = c.find( ".active:last a" )[0],
f = a.Event(
"show.bs.tab", {
relatedTarget: e
}
);
if (b.trigger( f ), ! f.isDefaultPrevented()) {
var g = a( d );
this.activate( b.parent( "li" ), c ), this.activate(
g, g.parent(), function() {
b.trigger(
{
type: "shown.bs.tab",
relatedTarget: e
}
)
}
)
}
}
}, b.prototype.activate = function(b, c, d) {
function e() {
f.removeClass( "active" ).find( "> .dropdown-menu > .active" ).removeClass( "active" ), b.addClass( "active" ), g ? (b[0].offsetWidth, b.addClass( "in" )) : b.removeClass( "fade" ), b.parent( ".dropdown-menu" ) && b.closest( "li.dropdown" ).addClass( "active" ), d && d()
}
var f = c.find( "> .active" ),
g = d && a.support.transition && f.hasClass( "fade" );
g ? f.one( a.support.transition.end, e ).emulateTransitionEnd( 150 ) : e(), f.removeClass( "in" )
};
var c = a.fn.tab;
a.fn.tab = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tab" );
e || d.data( "bs.tab", e = new b( this ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.tab.Constructor = b, a.fn.tab.noConflict = function() {
return a.fn.tab = c, this
}, a( document ).on(
"click.bs.tab.data-api", '[data-toggle="tab"], [data-toggle="pill"]', function(b) {
b.preventDefault(), a( this ).tab( "show" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.options = a.extend( {}, b.DEFAULTS, d ), this.$window = a( window ).on( "scroll.bs.affix.data-api", a.proxy( this.checkPosition, this ) ).on( "click.bs.affix.data-api", a.proxy( this.checkPositionWithEventLoop, this ) ), this.$element = a( c ), this.affixed = this.unpin = this.pinnedOffset = null, this.checkPosition()
};
b.RESET = "affix affix-top affix-bottom", b.DEFAULTS = {
offset: 0
}, b.prototype.getPinnedOffset = function() {
if (this.pinnedOffset) {
return this.pinnedOffset;
}
this.$element.removeClass( b.RESET ).addClass( "affix" );
var a = this.$window.scrollTop(),
c = this.$element.offset();
return this.pinnedOffset = c.top - a
}, b.prototype.checkPositionWithEventLoop = function() {
setTimeout( a.proxy( this.checkPosition, this ), 1 )
}, b.prototype.checkPosition = function() {
if (this.$element.is( ":visible" )) {
var c = a( document ).height(),
d = this.$window.scrollTop(),
e = this.$element.offset(),
f = this.options.offset,
g = f.top,
h = f.bottom;
"top" == this.affixed && (e.top += d), "object" != typeof f && (h = g = f), "function" == typeof g && (g = f.top( this.$element )), "function" == typeof h && (h = f.bottom( this.$element ));
var i = null != this.unpin && d + this.unpin <= e.top ? ! 1 : null != h && e.top + this.$element.height() >= c - h ? "bottom" : null != g && g >= d ? "top" : ! 1;
if (this.affixed !== i) {
this.unpin && this.$element.css( "top", "" );
var j = "affix" + (i ? "-" + i : ""),
k = a.Event( j + ".bs.affix" );
this.$element.trigger( k ), k.isDefaultPrevented() || (this.affixed = i, this.unpin = "bottom" == i ? this.getPinnedOffset() : null, this.$element.removeClass( b.RESET ).addClass( j ).trigger( a.Event( j.replace( "affix", "affixed" ) ) ), "bottom" == i && this.$element.offset(
{
top: c - h - this.$element.height()
}
))
}
}
};
var c = a.fn.affix;
a.fn.affix = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.affix" ),
f = "object" == typeof c && c;
e || d.data( "bs.affix", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.affix.Constructor = b, a.fn.affix.noConflict = function() {
return a.fn.affix = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="affix"]' ).each(
function() {
var b = a( this ),
c = b.data();
c.offset = c.offset || {}, c.offsetBottom && (c.offset.bottom = c.offsetBottom), c.offsetTop && (c.offset.top = c.offsetTop), b.affix( c )
}
)
}
)
}(jQuery);
home/xbodynamge/namtation/wp-content/themes/zerif-lite/js/bootstrap.js 0000644 00000113037 15114502773 0022261 0 ustar 00 /*!
* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if ("undefined" == typeof jQuery) {
throw new Error( "Bootstrap's JavaScript requires jQuery" );
} + function(a) {
"use strict";
function b() {
var a = document.createElement( "bootstrap" ),
b = {
WebkitTransition: "webkitTransitionEnd",
MozTransition: "transitionend",
OTransition: "oTransitionEnd otransitionend",
transition: "transitionend"
};
for (var c in b) {
if (void 0 !== a.style[c]) {
return
end: b[c]
}
};
return ! 1
}
a.fn.emulateTransitionEnd = function(b) {
var c = ! 1,
d = this;
a( this ).one(
a.support.transition.end, function() {
c = ! 0
}
);
var e = function() {
c || a( d ).trigger( a.support.transition.end )
};
return setTimeout( e, b ), this
}, a(
function() {
a.support.transition = b()
}
)
}(jQuery), + function(a) {
"use strict";
var b = '[data-dismiss="alert"]',
c = function(c) {
a( c ).on( "click", b, this.close )
};
c.prototype.close = function(b) {
function c() {
f.trigger( "closed.bs.alert" ).remove()
}
var d = a( this ),
e = d.attr( "data-target" );
e || (e = d.attr( "href" ), e = e && e.replace( /.*(?=#[^\s]*$)/, "" ));
var f = a( e );
b && b.preventDefault(), f.length || (f = d.hasClass( "alert" ) ? d : d.parent()), f.trigger( b = a.Event( "close.bs.alert" ) ), b.isDefaultPrevented() || (f.removeClass( "in" ), a.support.transition && f.hasClass( "fade" ) ? f.one( a.support.transition.end, c ).emulateTransitionEnd( 150 ) : c())
};
var d = a.fn.alert;
a.fn.alert = function(b) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.alert" );
e || d.data( "bs.alert", e = new c( this ) ), "string" == typeof b && e[b].call( d )
}
)
}, a.fn.alert.Constructor = c, a.fn.alert.noConflict = function() {
return a.fn.alert = d, this
}, a( document ).on( "click.bs.alert.data-api", b, c.prototype.close )
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.isLoading = ! 1
};
b.DEFAULTS = {
loadingText: "loading..."
}, b.prototype.setState = function(b) {
var c = "disabled",
d = this.$element,
e = d.is( "input" ) ? "val" : "html",
f = d.data();
b += "Text", f.resetText || d.data( "resetText", d[e]() ), d[e](f[b] || this.options[b]), setTimeout(
a.proxy(
function() {
"loadingText" == b ? (this.isLoading = ! 0, d.addClass( c ).attr( c, c )) : this.isLoading && (this.isLoading = ! 1, d.removeClass( c ).removeAttr( c ))
}, this
), 0
)
}, b.prototype.toggle = function() {
var a = ! 0,
b = this.$element.closest( '[data-toggle="buttons"]' );
if (b.length) {
var c = this.$element.find( "input" );
"radio" == c.prop( "type" ) && (c.prop( "checked" ) && this.$element.hasClass( "active" ) ? a = ! 1 : b.find( ".active" ).removeClass( "active" )), a && c.prop( "checked", ! this.$element.hasClass( "active" ) ).trigger( "change" )
}
a && this.$element.toggleClass( "active" )
};
var c = a.fn.button;
a.fn.button = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.button" ),
f = "object" == typeof c && c;
e || d.data( "bs.button", e = new b( this, f ) ), "toggle" == c ? e.toggle() : c && e.setState( c )
}
)
}, a.fn.button.Constructor = b, a.fn.button.noConflict = function() {
return a.fn.button = c, this
}, a( document ).on(
"click.bs.button.data-api", "[data-toggle^=button]", function(b) {
var c = a( b.target );
c.hasClass( "btn" ) || (c = c.closest( ".btn" )), c.button( "toggle" ), b.preventDefault()
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.$element = a( b ), this.$indicators = this.$element.find( ".carousel-indicators" ), this.options = c, this.paused = this.sliding = this.interval = this.$active = this.$items = null, "hover" == this.options.pause && this.$element.on( "mouseenter", a.proxy( this.pause, this ) ).on( "mouseleave", a.proxy( this.cycle, this ) )
};
b.DEFAULTS = {
interval: 5e3,
pause: "hover",
wrap: ! 0
}, b.prototype.cycle = function(b) {
return b || (this.paused = ! 1), this.interval && clearInterval( this.interval ), this.options.interval && ! this.paused && (this.interval = setInterval( a.proxy( this.next, this ), this.options.interval )), this
}, b.prototype.getActiveIndex = function() {
return this.$active = this.$element.find( ".item.active" ), this.$items = this.$active.parent().children(), this.$items.index( this.$active )
}, b.prototype.to = function(b) {
var c = this,
d = this.getActiveIndex();
return b > this.$items.length - 1 || 0 > b ? void 0 : this.sliding ? this.$element.one(
"slid.bs.carousel", function() {
c.to( b )
}
) : d == b ? this.pause().cycle() : this.slide( b > d ? "next" : "prev", a( this.$items[b] ) )
}, b.prototype.pause = function(b) {
return b || (this.paused = ! 0), this.$element.find( ".next, .prev" ).length && a.support.transition && (this.$element.trigger( a.support.transition.end ), this.cycle( ! 0 )), this.interval = clearInterval( this.interval ), this
}, b.prototype.next = function() {
return this.sliding ? void 0 : this.slide( "next" )
}, b.prototype.prev = function() {
return this.sliding ? void 0 : this.slide( "prev" )
}, b.prototype.slide = function(b, c) {
var d = this.$element.find( ".item.active" ),
e = c || d[b](),
f = this.interval,
g = "next" == b ? "left" : "right",
h = "next" == b ? "first" : "last",
i = this;
if ( ! e.length) {
if ( ! this.options.wrap) {
return;
}
e = this.$element.find( ".item" )[h]()
}
if (e.hasClass( "active" )) {
return this.sliding = ! 1;
}
var j = a.Event(
"slide.bs.carousel", {
relatedTarget: e[0],
direction: g
}
);
return this.$element.trigger( j ), j.isDefaultPrevented() ? void 0 : (this.sliding = ! 0, f && this.pause(), this.$indicators.length && (this.$indicators.find( ".active" ).removeClass( "active" ), this.$element.one(
"slid.bs.carousel", function() {
var b = a( i.$indicators.children()[i.getActiveIndex()] );
b && b.addClass( "active" )
}
)), a.support.transition && this.$element.hasClass( "slide" ) ? (e.addClass( b ), e[0].offsetWidth, d.addClass( g ), e.addClass( g ), d.one(
a.support.transition.end, function() {
e.removeClass( [b, g].join( " " ) ).addClass( "active" ), d.removeClass( ["active", g].join( " " ) ), i.sliding = ! 1, setTimeout(
function() {
i.$element.trigger( "slid.bs.carousel" )
}, 0
)
}
).emulateTransitionEnd( 1e3 * d.css( "transition-duration" ).slice( 0, -1 ) )) : (d.removeClass( "active" ), e.addClass( "active" ), this.sliding = ! 1, this.$element.trigger( "slid.bs.carousel" )), f && this.cycle(), this)
};
var c = a.fn.carousel;
a.fn.carousel = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.carousel" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c ),
g = "string" == typeof c ? c : f.slide;
e || d.data( "bs.carousel", e = new b( this, f ) ), "number" == typeof c ? e.to( c ) : g ? e[g]() : f.interval && e.pause().cycle()
}
)
}, a.fn.carousel.Constructor = b, a.fn.carousel.noConflict = function() {
return a.fn.carousel = c, this
}, a( document ).on(
"click.bs.carousel.data-api", "[data-slide], [data-slide-to]", function(b) {
var c, d = a( this ),
e = a( d.attr( "data-target" ) || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = a.extend( {}, e.data(), d.data() ),
g = d.attr( "data-slide-to" );
g && (f.interval = ! 1), e.carousel( f ), (g = d.attr( "data-slide-to" )) && e.data( "bs.carousel" ).to( g ), b.preventDefault()
}
), a( window ).on(
"load", function() {
a( '[data-ride="carousel"]' ).each(
function() {
var b = a( this );
b.carousel( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.transitioning = null, this.options.parent && (this.$parent = a( this.options.parent )), this.options.toggle && this.toggle()
};
b.DEFAULTS = {
toggle: ! 0
}, b.prototype.dimension = function() {
var a = this.$element.hasClass( "width" );
return a ? "width" : "height"
}, b.prototype.show = function() {
if ( ! this.transitioning && ! this.$element.hasClass( "in" )) {
var b = a.Event( "show.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.$parent && this.$parent.find( "> .panel > .in" );
if (c && c.length) {
var d = c.data( "bs.collapse" );
if (d && d.transitioning) {
return;
}
c.collapse( "hide" ), d || c.data( "bs.collapse", null )
}
var e = this.dimension();
this.$element.removeClass( "collapse" ).addClass( "collapsing" )[e](0), this.transitioning = 1;
var f = function() {
this.$element.removeClass( "collapsing" ).addClass( "collapse in" )[e]("auto"), this.transitioning = 0, this.$element.trigger( "shown.bs.collapse" )
};
if ( ! a.support.transition) {
return f.call( this );
}
var g = a.camelCase( ["scroll", e].join( "-" ) );
this.$element.one( a.support.transition.end, a.proxy( f, this ) ).emulateTransitionEnd( 350 )[e](this.$element[0][g])
}
}
}, b.prototype.hide = function() {
if ( ! this.transitioning && this.$element.hasClass( "in" )) {
var b = a.Event( "hide.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.dimension();
this.$element[c](this.$element[c]())[0].offsetHeight, this.$element.addClass( "collapsing" ).removeClass( "collapse" ).removeClass( "in" ), this.transitioning = 1;
var d = function() {
this.transitioning = 0, this.$element.trigger( "hidden.bs.collapse" ).removeClass( "collapsing" ).addClass( "collapse" )
};
return a.support.transition ? void this.$element[c](0).one( a.support.transition.end, a.proxy( d, this ) ).emulateTransitionEnd( 350 ) : d.call( this )
}
}
}, b.prototype.toggle = function() {
this[this.$element.hasClass( "in" ) ? "hide" : "show"]()
};
var c = a.fn.collapse;
a.fn.collapse = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.collapse" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c );
! e && f.toggle && "show" == c && (c = ! c), e || d.data( "bs.collapse", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.collapse.Constructor = b, a.fn.collapse.noConflict = function() {
return a.fn.collapse = c, this
}, a( document ).on(
"click.bs.collapse.data-api", "[data-toggle=collapse]", function(b) {
var c, d = a( this ),
e = d.attr( "data-target" ) || b.preventDefault() || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ),
f = a( e ),
g = f.data( "bs.collapse" ),
h = g ? "toggle" : d.data(),
i = d.attr( "data-parent" ),
j = i && a( i );
g && g.transitioning || (j && j.find( '[data-toggle=collapse][data-parent="' + i + '"]' ).not( d ).addClass( "collapsed" ), d[f.hasClass( "in" ) ? "addClass" : "removeClass"]("collapsed")), f.collapse( h )
}
)
}(jQuery), + function(a) {
"use strict";
function b(b) {
a( d ).remove(), a( e ).each(
function() {
var d = c( a( this ) ),
e = {
relatedTarget: this
};
d.hasClass( "open" ) && (d.trigger( b = a.Event( "hide.bs.dropdown", e ) ), b.isDefaultPrevented() || d.removeClass( "open" ).trigger( "hidden.bs.dropdown", e ))
}
)
}
function c(b) {
var c = b.attr( "data-target" );
c || (c = b.attr( "href" ), c = c && /#[A-Za-z]/.test( c ) && c.replace( /.*(?=#[^\s]*$)/, "" ));
var d = c && a( c );
return d && d.length ? d : b.parent()
}
var d = ".dropdown-backdrop",
e = "[data-toggle=dropdown]",
f = function(b) {
a( b ).on( "click.bs.dropdown", this.toggle )
};
f.prototype.toggle = function(d) {
var e = a( this );
if ( ! e.is( ".disabled, :disabled" )) {
var f = c( e ),
g = f.hasClass( "open" );
if (b(), ! g) {
"ontouchstart" in document.documentElement && ! f.closest( ".navbar-nav" ).length && a( '<div class="dropdown-backdrop"/>' ).insertAfter( a( this ) ).on( "click", b );
var h = {
relatedTarget: this
};
if (f.trigger( d = a.Event( "show.bs.dropdown", h ) ), d.isDefaultPrevented()) {
return;
}
f.toggleClass( "open" ).trigger( "shown.bs.dropdown", h ), e.focus()
}
return ! 1
}
}, f.prototype.keydown = function(b) {
if (/(38|40|27)/.test( b.keyCode )) {
var d = a( this );
if (b.preventDefault(), b.stopPropagation(), ! d.is( ".disabled, :disabled" )) {
var f = c( d ),
g = f.hasClass( "open" );
if ( ! g || g && 27 == b.keyCode) {
return 27 == b.which && f.find( e ).focus(), d.click();
}
var h = " li:not(.divider):visible a",
i = f.find( "[role=menu]" + h + ", [role=listbox]" + h );
if (i.length) {
var j = i.index( i.filter( ":focus" ) );
38 == b.keyCode && j > 0 && j--, 40 == b.keyCode && j < i.length - 1 && j++, ~j || (j = 0), i.eq( j ).focus()
}
}
}
};
var g = a.fn.dropdown;
a.fn.dropdown = function(b) {
return this.each(
function() {
var c = a( this ),
d = c.data( "bs.dropdown" );
d || c.data( "bs.dropdown", d = new f( this ) ), "string" == typeof b && d[b].call( c )
}
)
}, a.fn.dropdown.Constructor = f, a.fn.dropdown.noConflict = function() {
return a.fn.dropdown = g, this
}, a( document ).on( "click.bs.dropdown.data-api", b ).on(
"click.bs.dropdown.data-api", ".dropdown form", function(a) {
a.stopPropagation()
}
).on( "click.bs.dropdown.data-api", e, f.prototype.toggle ).on( "keydown.bs.dropdown.data-api", e + ", [role=menu], [role=listbox]", f.prototype.keydown )
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.options = c, this.$element = a( b ), this.$backdrop = this.isShown = null, this.options.remote && this.$element.find( ".modal-content" ).load(
this.options.remote, a.proxy(
function() {
this.$element.trigger( "loaded.bs.modal" )
}, this
)
)
};
b.DEFAULTS = {
backdrop: ! 0,
keyboard: ! 0,
show: ! 0
}, b.prototype.toggle = function(a) {
return this[this.isShown ? "hide" : "show"](a)
}, b.prototype.show = function(b) {
var c = this,
d = a.Event(
"show.bs.modal", {
relatedTarget: b
}
);
this.$element.trigger( d ), this.isShown || d.isDefaultPrevented() || (this.isShown = ! 0, this.escape(), this.$element.on( "click.dismiss.bs.modal", '[data-dismiss="modal"]', a.proxy( this.hide, this ) ), this.backdrop(
function() {
var d = a.support.transition && c.$element.hasClass( "fade" );
c.$element.parent().length || c.$element.appendTo( document.body ), c.$element.show().scrollTop( 0 ), d && c.$element[0].offsetWidth, c.$element.addClass( "in" ).attr( "aria-hidden", ! 1 ), c.enforceFocus();
var e = a.Event(
"shown.bs.modal", {
relatedTarget: b
}
);
d ? c.$element.find( ".modal-dialog" ).one(
a.support.transition.end, function() {
c.$element.focus().trigger( e )
}
).emulateTransitionEnd( 300 ) : c.$element.focus().trigger( e )
}
))
}, b.prototype.hide = function(b) {
b && b.preventDefault(), b = a.Event( "hide.bs.modal" ), this.$element.trigger( b ), this.isShown && ! b.isDefaultPrevented() && (this.isShown = ! 1, this.escape(), a( document ).off( "focusin.bs.modal" ), this.$element.removeClass( "in" ).attr( "aria-hidden", ! 0 ).off( "click.dismiss.bs.modal" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$element.one( a.support.transition.end, a.proxy( this.hideModal, this ) ).emulateTransitionEnd( 300 ) : this.hideModal())
}, b.prototype.enforceFocus = function() {
a( document ).off( "focusin.bs.modal" ).on(
"focusin.bs.modal", a.proxy(
function(a) {
this.$element[0] === a.target || this.$element.has( a.target ).length || this.$element.focus()
}, this
)
)
}, b.prototype.escape = function() {
this.isShown && this.options.keyboard ? this.$element.on(
"keyup.dismiss.bs.modal", a.proxy(
function(a) {
27 == a.which && this.hide()
}, this
)
) : this.isShown || this.$element.off( "keyup.dismiss.bs.modal" )
}, b.prototype.hideModal = function() {
var a = this;
this.$element.hide(), this.backdrop(
function() {
a.removeBackdrop(), a.$element.trigger( "hidden.bs.modal" )
}
)
}, b.prototype.removeBackdrop = function() {
this.$backdrop && this.$backdrop.remove(), this.$backdrop = null
}, b.prototype.backdrop = function(b) {
var c = this.$element.hasClass( "fade" ) ? "fade" : "";
if (this.isShown && this.options.backdrop) {
var d = a.support.transition && c;
if (this.$backdrop = a( '<div class="modal-backdrop ' + c + '" />' ).appendTo( document.body ), this.$element.on(
"click.dismiss.bs.modal", a.proxy(
function(a) {
a.target === a.currentTarget && ("static" == this.options.backdrop ? this.$element[0].focus.call( this.$element[0] ) : this.hide.call( this ))
}, this
)
), d && this.$backdrop[0].offsetWidth, this.$backdrop.addClass( "in" ), ! b) {
return;
}
d ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()
} else {
! this.isShown && this.$backdrop ? (this.$backdrop.removeClass( "in" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()) : b && b()
}
};
var c = a.fn.modal;
a.fn.modal = function(c, d) {
return this.each(
function() {
var e = a( this ),
f = e.data( "bs.modal" ),
g = a.extend( {}, b.DEFAULTS, e.data(), "object" == typeof c && c );
f || e.data( "bs.modal", f = new b( this, g ) ), "string" == typeof c ? f[c](d) : g.show && f.show( d )
}
)
}, a.fn.modal.Constructor = b, a.fn.modal.noConflict = function() {
return a.fn.modal = c, this
}, a( document ).on(
"click.bs.modal.data-api", '[data-toggle="modal"]', function(b) {
var c = a( this ),
d = c.attr( "href" ),
e = a( c.attr( "data-target" ) || d && d.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = e.data( "bs.modal" ) ? "toggle" : a.extend(
{
remote: ! / # / .test( d ) && d
}, e.data(), c.data()
);
c.is( "a" ) && b.preventDefault(), e.modal( f, this ).one(
"hide", function() {
c.is( ":visible" ) && c.focus()
}
)
}
), a( document ).on(
"show.bs.modal", ".modal", function() {
a( document.body ).addClass( "modal-open" )
}
).on(
"hidden.bs.modal", ".modal", function() {
a( document.body ).removeClass( "modal-open" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.type = this.options = this.enabled = this.timeout = this.hoverState = this.$element = null, this.init( "tooltip", a, b )
};
b.DEFAULTS = {
animation: ! 0,
placement: "top",
selector: ! 1,
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
trigger: "hover focus",
title: "",
delay: 0,
html: ! 1,
container: ! 1
}, b.prototype.init = function(b, c, d) {
this.enabled = ! 0, this.type = b, this.$element = a( c ), this.options = this.getOptions( d );
for (var e = this.options.trigger.split( " " ), f = e.length; f--;) {
var g = e[f];
if ("click" == g) {
this.$element.on( "click." + this.type, this.options.selector, a.proxy( this.toggle, this ) );
} else if ("manual" != g) {
var h = "hover" == g ? "mouseenter" : "focusin",
i = "hover" == g ? "mouseleave" : "focusout";
this.$element.on( h + "." + this.type, this.options.selector, a.proxy( this.enter, this ) ), this.$element.on( i + "." + this.type, this.options.selector, a.proxy( this.leave, this ) )
}
}
this.options.selector ? this._options = a.extend(
{}, this.options, {
trigger: "manual",
selector: ""
}
) : this.fixTitle()
}, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.getOptions = function(b) {
return b = a.extend( {}, this.getDefaults(), this.$element.data(), b ), b.delay && "number" == typeof b.delay && (b.delay = {
show: b.delay,
hide: b.delay
}), b
}, b.prototype.getDelegateOptions = function() {
var b = {},
c = this.getDefaults();
return this._options && a.each(
this._options, function(a, d) {
c[a] != d && (b[a] = d)
}
), b
}, b.prototype.enter = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "in", c.options.delay && c.options.delay.show ? void(
c.timeout = setTimeout(
function() {
"in" == c.hoverState && c.show()
}, c.options.delay.show
)
) : c.show()
}, b.prototype.leave = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "out", c.options.delay && c.options.delay.hide ? void(
c.timeout = setTimeout(
function() {
"out" == c.hoverState && c.hide()
}, c.options.delay.hide
)
) : c.hide()
}, b.prototype.show = function() {
var b = a.Event( "show.bs." + this.type );
if (this.hasContent() && this.enabled) {
if (this.$element.trigger( b ), b.isDefaultPrevented()) {
return;
}
var c = this,
d = this.tip();
this.setContent(), this.options.animation && d.addClass( "fade" );
var e = "function" == typeof this.options.placement ? this.options.placement.call( this, d[0], this.$element[0] ) : this.options.placement,
f = /\s?auto?\s?/i,
g = f.test( e );
g && (e = e.replace( f, "" ) || "top"), d.detach().css(
{
top: 0,
left: 0,
display: "block"
}
).addClass( e ), this.options.container ? d.appendTo( this.options.container ) : d.insertAfter( this.$element );
var h = this.getPosition(),
i = d[0].offsetWidth,
j = d[0].offsetHeight;
if (g) {
var k = this.$element.parent(),
l = e,
m = document.documentElement.scrollTop || document.body.scrollTop,
n = "body" == this.options.container ? window.innerWidth : k.outerWidth(),
o = "body" == this.options.container ? window.innerHeight : k.outerHeight(),
p = "body" == this.options.container ? 0 : k.offset().left;
e = "bottom" == e && h.top + h.height + j - m > o ? "top" : "top" == e && h.top - m - j < 0 ? "bottom" : "right" == e && h.right + i > n ? "left" : "left" == e && h.left - i < p ? "right" : e, d.removeClass( l ).addClass( e )
}
var q = this.getCalculatedOffset( e, h, i, j );
this.applyPlacement( q, e ), this.hoverState = null;
var r = function() {
c.$element.trigger( "shown.bs." + c.type )
};
a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, r ).emulateTransitionEnd( 150 ) : r()
}
}, b.prototype.applyPlacement = function(b, c) {
var d, e = this.tip(),
f = e[0].offsetWidth,
g = e[0].offsetHeight,
h = parseInt( e.css( "margin-top" ), 10 ),
i = parseInt( e.css( "margin-left" ), 10 );
isNaN( h ) && (h = 0), isNaN( i ) && (i = 0), b.top = b.top + h, b.left = b.left + i, a.offset.setOffset(
e[0], a.extend(
{
using: function(a) {
e.css(
{
top: Math.round( a.top ),
left: Math.round( a.left )
}
)
}
}, b
), 0
), e.addClass( "in" );
var j = e[0].offsetWidth,
k = e[0].offsetHeight;
if ("top" == c && k != g && (d = ! 0, b.top = b.top + g - k), /bottom|top/.test( c )) {
var l = 0;
b.left < 0 && (l = -2 * b.left, b.left = 0, e.offset( b ), j = e[0].offsetWidth, k = e[0].offsetHeight), this.replaceArrow( l - f + j, j, "left" )
} else {
this.replaceArrow( k - g, k, "top" );
}
d && e.offset( b )
}, b.prototype.replaceArrow = function(a, b, c) {
this.arrow().css( c, a ? 50 * (1 - a / b) + "%" : "" )
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle();
a.find( ".tooltip-inner" )[this.options.html ? "html" : "text"](b), a.removeClass( "fade in top bottom left right" )
}, b.prototype.hide = function() {
function b() {
"in" != c.hoverState && d.detach(), c.$element.trigger( "hidden.bs." + c.type )
}
var c = this,
d = this.tip(),
e = a.Event( "hide.bs." + this.type );
return this.$element.trigger( e ), e.isDefaultPrevented() ? void 0 : (d.removeClass( "in" ), a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b(), this.hoverState = null, this)
}, b.prototype.fixTitle = function() {
var a = this.$element;
(a.attr( "title" ) || "string" != typeof a.attr( "data-original-title" )) && a.attr( "data-original-title", a.attr( "title" ) || "" ).attr( "title", "" )
}, b.prototype.hasContent = function() {
return this.getTitle()
}, b.prototype.getPosition = function() {
var b = this.$element[0];
return a.extend(
{}, "function" == typeof b.getBoundingClientRect ? b.getBoundingClientRect() : {
width: b.offsetWidth,
height: b.offsetHeight
}, this.$element.offset()
)
}, b.prototype.getCalculatedOffset = function(a, b, c, d) {
return "bottom" == a ? {
top: b.top + b.height,
left: b.left + b.width / 2 - c / 2
} : "top" == a ? {
top: b.top - d,
left: b.left + b.width / 2 - c / 2
} : "left" == a ? {
top: b.top + b.height / 2 - d / 2,
left: b.left - c
} : {
top: b.top + b.height / 2 - d / 2,
left: b.left + b.width
}
}, b.prototype.getTitle = function() {
var a, b = this.$element,
c = this.options;
return a = b.attr( "data-original-title" ) || ("function" == typeof c.title ? c.title.call( b[0] ) : c.title)
}, b.prototype.tip = function() {
return this.$tip = this.$tip || a( this.options.template )
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".tooltip-arrow" )
}, b.prototype.validate = function() {
this.$element[0].parentNode || (this.hide(), this.$element = null, this.options = null)
}, b.prototype.enable = function() {
this.enabled = ! 0
}, b.prototype.disable = function() {
this.enabled = ! 1
}, b.prototype.toggleEnabled = function() {
this.enabled = ! this.enabled
}, b.prototype.toggle = function(b) {
var c = b ? a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type ) : this;
c.tip().hasClass( "in" ) ? c.leave( c ) : c.enter( c )
}, b.prototype.destroy = function() {
clearTimeout( this.timeout ), this.hide().$element.off( "." + this.type ).removeData( "bs." + this.type )
};
var c = a.fn.tooltip;
a.fn.tooltip = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tooltip" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.tooltip", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.tooltip.Constructor = b, a.fn.tooltip.noConflict = function() {
return a.fn.tooltip = c, this
}
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.init( "popover", a, b )
};
if ( ! a.fn.tooltip) {
throw new Error( "Popover requires tooltip.js" );
}
b.DEFAULTS = a.extend(
{}, a.fn.tooltip.Constructor.DEFAULTS, {
placement: "right",
trigger: "click",
content: "",
template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
}
), b.prototype = a.extend( {}, a.fn.tooltip.Constructor.prototype ), b.prototype.constructor = b, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle(),
c = this.getContent();
a.find( ".popover-title" )[this.options.html ? "html" : "text"](b), a.find( ".popover-content" )[this.options.html ? "string" == typeof c ? "html" : "append" : "text"](c), a.removeClass( "fade top bottom left right in" ), a.find( ".popover-title" ).html() || a.find( ".popover-title" ).hide()
}, b.prototype.hasContent = function() {
return this.getTitle() || this.getContent()
}, b.prototype.getContent = function() {
var a = this.$element,
b = this.options;
return a.attr( "data-content" ) || ("function" == typeof b.content ? b.content.call( a[0] ) : b.content)
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".arrow" )
}, b.prototype.tip = function() {
return this.$tip || (this.$tip = a( this.options.template )), this.$tip
};
var c = a.fn.popover;
a.fn.popover = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.popover" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.popover", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.popover.Constructor = b, a.fn.popover.noConflict = function() {
return a.fn.popover = c, this
}
}(jQuery), + function(a) {
"use strict";
function b(c, d) {
var e, f = a.proxy( this.process, this );
this.$element = a( a( c ).is( "body" ) ? window : c ), this.$body = a( "body" ), this.$scrollElement = this.$element.on( "scroll.bs.scroll-spy.data-api", f ), this.options = a.extend( {}, b.DEFAULTS, d ), this.selector = (this.options.target || (e = a( c ).attr( "href" )) && e.replace( /.*(?=#[^\s]+$)/, "" ) || "") + " .nav li > a", this.offsets = a( [] ), this.targets = a( [] ), this.activeTarget = null, this.refresh(), this.process()
}
b.DEFAULTS = {
offset: 10
}, b.prototype.refresh = function() {
var b = this.$element[0] == window ? "offset" : "position";
this.offsets = a( [] ), this.targets = a( [] ); {
var c = this;
this.$body.find( this.selector ).map(
function() {
var d = a( this ),
e = d.data( "target" ) || d.attr( "href" ),
f = /^#./.test( e ) && a( e );
return f && f.length && f.is( ":visible" ) && [
[f[b]().top + ( ! a.isWindow( c.$scrollElement.get( 0 ) ) && c.$scrollElement.scrollTop()), e]
] || null
}
).sort(
function(a, b) {
return a[0] - b[0]
}
).each(
function() {
c.offsets.push( this[0] ), c.targets.push( this[1] )
}
)
}
}, b.prototype.process = function() {
var a, b = this.$scrollElement.scrollTop() + this.options.offset,
c = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight,
d = c - this.$scrollElement.height(),
e = this.offsets,
f = this.targets,
g = this.activeTarget;
if (b >= d) {
return g != (a = f.last()[0]) && this.activate( a );
}
if (g && b <= e[0]) {
return g != (a = f[0]) && this.activate( a );
}
for (a = e.length; a--;) {
g != f[a] && b >= e[a] && ( ! e[a + 1] || b <= e[a + 1]) && this.activate( f[a] )
}
}, b.prototype.activate = function(b) {
this.activeTarget = b, a( this.selector ).parentsUntil( this.options.target, ".active" ).removeClass( "active" );
var c = this.selector + '[data-target="' + b + '"],' + this.selector + '[href="' + b + '"]',
d = a( c ).parents( "li" ).addClass( "active" );
d.parent( ".dropdown-menu" ).length && (d = d.closest( "li.dropdown" ).addClass( "active" )), d.trigger( "activate.bs.scrollspy" )
};
var c = a.fn.scrollspy;
a.fn.scrollspy = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.scrollspy" ),
f = "object" == typeof c && c;
e || d.data( "bs.scrollspy", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.scrollspy.Constructor = b, a.fn.scrollspy.noConflict = function() {
return a.fn.scrollspy = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="scroll"]' ).each(
function() {
var b = a( this );
b.scrollspy( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b) {
this.element = a( b )
};
b.prototype.show = function() {
var b = this.element,
c = b.closest( "ul:not(.dropdown-menu)" ),
d = b.data( "target" );
if (d || (d = b.attr( "href" ), d = d && d.replace( /.*(?=#[^\s]*$)/, "" )), ! b.parent( "li" ).hasClass( "active" )) {
var e = c.find( ".active:last a" )[0],
f = a.Event(
"show.bs.tab", {
relatedTarget: e
}
);
if (b.trigger( f ), ! f.isDefaultPrevented()) {
var g = a( d );
this.activate( b.parent( "li" ), c ), this.activate(
g, g.parent(), function() {
b.trigger(
{
type: "shown.bs.tab",
relatedTarget: e
}
)
}
)
}
}
}, b.prototype.activate = function(b, c, d) {
function e() {
f.removeClass( "active" ).find( "> .dropdown-menu > .active" ).removeClass( "active" ), b.addClass( "active" ), g ? (b[0].offsetWidth, b.addClass( "in" )) : b.removeClass( "fade" ), b.parent( ".dropdown-menu" ) && b.closest( "li.dropdown" ).addClass( "active" ), d && d()
}
var f = c.find( "> .active" ),
g = d && a.support.transition && f.hasClass( "fade" );
g ? f.one( a.support.transition.end, e ).emulateTransitionEnd( 150 ) : e(), f.removeClass( "in" )
};
var c = a.fn.tab;
a.fn.tab = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tab" );
e || d.data( "bs.tab", e = new b( this ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.tab.Constructor = b, a.fn.tab.noConflict = function() {
return a.fn.tab = c, this
}, a( document ).on(
"click.bs.tab.data-api", '[data-toggle="tab"], [data-toggle="pill"]', function(b) {
b.preventDefault(), a( this ).tab( "show" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.options = a.extend( {}, b.DEFAULTS, d ), this.$window = a( window ).on( "scroll.bs.affix.data-api", a.proxy( this.checkPosition, this ) ).on( "click.bs.affix.data-api", a.proxy( this.checkPositionWithEventLoop, this ) ), this.$element = a( c ), this.affixed = this.unpin = this.pinnedOffset = null, this.checkPosition()
};
b.RESET = "affix affix-top affix-bottom", b.DEFAULTS = {
offset: 0
}, b.prototype.getPinnedOffset = function() {
if (this.pinnedOffset) {
return this.pinnedOffset;
}
this.$element.removeClass( b.RESET ).addClass( "affix" );
var a = this.$window.scrollTop(),
c = this.$element.offset();
return this.pinnedOffset = c.top - a
}, b.prototype.checkPositionWithEventLoop = function() {
setTimeout( a.proxy( this.checkPosition, this ), 1 )
}, b.prototype.checkPosition = function() {
if (this.$element.is( ":visible" )) {
var c = a( document ).height(),
d = this.$window.scrollTop(),
e = this.$element.offset(),
f = this.options.offset,
g = f.top,
h = f.bottom;
"top" == this.affixed && (e.top += d), "object" != typeof f && (h = g = f), "function" == typeof g && (g = f.top( this.$element )), "function" == typeof h && (h = f.bottom( this.$element ));
var i = null != this.unpin && d + this.unpin <= e.top ? ! 1 : null != h && e.top + this.$element.height() >= c - h ? "bottom" : null != g && g >= d ? "top" : ! 1;
if (this.affixed !== i) {
this.unpin && this.$element.css( "top", "" );
var j = "affix" + (i ? "-" + i : ""),
k = a.Event( j + ".bs.affix" );
this.$element.trigger( k ), k.isDefaultPrevented() || (this.affixed = i, this.unpin = "bottom" == i ? this.getPinnedOffset() : null, this.$element.removeClass( b.RESET ).addClass( j ).trigger( a.Event( j.replace( "affix", "affixed" ) ) ), "bottom" == i && this.$element.offset(
{
top: c - h - this.$element.height()
}
))
}
}
};
var c = a.fn.affix;
a.fn.affix = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.affix" ),
f = "object" == typeof c && c;
e || d.data( "bs.affix", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.affix.Constructor = b, a.fn.affix.noConflict = function() {
return a.fn.affix = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="affix"]' ).each(
function() {
var b = a( this ),
c = b.data();
c.offset = c.offset || {}, c.offsetBottom && (c.offset.bottom = c.offsetBottom), c.offsetTop && (c.offset.top = c.offsetTop), b.affix( c )
}
)
}
)
}(jQuery);
home/xbodynamge/lebauwcentre/wp-content/themes/zerif-lite/js/bootstrap.js 0000644 00000113037 15114625472 0022751 0 ustar 00 /*!
* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
if ("undefined" == typeof jQuery) {
throw new Error( "Bootstrap's JavaScript requires jQuery" );
} + function(a) {
"use strict";
function b() {
var a = document.createElement( "bootstrap" ),
b = {
WebkitTransition: "webkitTransitionEnd",
MozTransition: "transitionend",
OTransition: "oTransitionEnd otransitionend",
transition: "transitionend"
};
for (var c in b) {
if (void 0 !== a.style[c]) {
return
end: b[c]
}
};
return ! 1
}
a.fn.emulateTransitionEnd = function(b) {
var c = ! 1,
d = this;
a( this ).one(
a.support.transition.end, function() {
c = ! 0
}
);
var e = function() {
c || a( d ).trigger( a.support.transition.end )
};
return setTimeout( e, b ), this
}, a(
function() {
a.support.transition = b()
}
)
}(jQuery), + function(a) {
"use strict";
var b = '[data-dismiss="alert"]',
c = function(c) {
a( c ).on( "click", b, this.close )
};
c.prototype.close = function(b) {
function c() {
f.trigger( "closed.bs.alert" ).remove()
}
var d = a( this ),
e = d.attr( "data-target" );
e || (e = d.attr( "href" ), e = e && e.replace( /.*(?=#[^\s]*$)/, "" ));
var f = a( e );
b && b.preventDefault(), f.length || (f = d.hasClass( "alert" ) ? d : d.parent()), f.trigger( b = a.Event( "close.bs.alert" ) ), b.isDefaultPrevented() || (f.removeClass( "in" ), a.support.transition && f.hasClass( "fade" ) ? f.one( a.support.transition.end, c ).emulateTransitionEnd( 150 ) : c())
};
var d = a.fn.alert;
a.fn.alert = function(b) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.alert" );
e || d.data( "bs.alert", e = new c( this ) ), "string" == typeof b && e[b].call( d )
}
)
}, a.fn.alert.Constructor = c, a.fn.alert.noConflict = function() {
return a.fn.alert = d, this
}, a( document ).on( "click.bs.alert.data-api", b, c.prototype.close )
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.isLoading = ! 1
};
b.DEFAULTS = {
loadingText: "loading..."
}, b.prototype.setState = function(b) {
var c = "disabled",
d = this.$element,
e = d.is( "input" ) ? "val" : "html",
f = d.data();
b += "Text", f.resetText || d.data( "resetText", d[e]() ), d[e](f[b] || this.options[b]), setTimeout(
a.proxy(
function() {
"loadingText" == b ? (this.isLoading = ! 0, d.addClass( c ).attr( c, c )) : this.isLoading && (this.isLoading = ! 1, d.removeClass( c ).removeAttr( c ))
}, this
), 0
)
}, b.prototype.toggle = function() {
var a = ! 0,
b = this.$element.closest( '[data-toggle="buttons"]' );
if (b.length) {
var c = this.$element.find( "input" );
"radio" == c.prop( "type" ) && (c.prop( "checked" ) && this.$element.hasClass( "active" ) ? a = ! 1 : b.find( ".active" ).removeClass( "active" )), a && c.prop( "checked", ! this.$element.hasClass( "active" ) ).trigger( "change" )
}
a && this.$element.toggleClass( "active" )
};
var c = a.fn.button;
a.fn.button = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.button" ),
f = "object" == typeof c && c;
e || d.data( "bs.button", e = new b( this, f ) ), "toggle" == c ? e.toggle() : c && e.setState( c )
}
)
}, a.fn.button.Constructor = b, a.fn.button.noConflict = function() {
return a.fn.button = c, this
}, a( document ).on(
"click.bs.button.data-api", "[data-toggle^=button]", function(b) {
var c = a( b.target );
c.hasClass( "btn" ) || (c = c.closest( ".btn" )), c.button( "toggle" ), b.preventDefault()
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.$element = a( b ), this.$indicators = this.$element.find( ".carousel-indicators" ), this.options = c, this.paused = this.sliding = this.interval = this.$active = this.$items = null, "hover" == this.options.pause && this.$element.on( "mouseenter", a.proxy( this.pause, this ) ).on( "mouseleave", a.proxy( this.cycle, this ) )
};
b.DEFAULTS = {
interval: 5e3,
pause: "hover",
wrap: ! 0
}, b.prototype.cycle = function(b) {
return b || (this.paused = ! 1), this.interval && clearInterval( this.interval ), this.options.interval && ! this.paused && (this.interval = setInterval( a.proxy( this.next, this ), this.options.interval )), this
}, b.prototype.getActiveIndex = function() {
return this.$active = this.$element.find( ".item.active" ), this.$items = this.$active.parent().children(), this.$items.index( this.$active )
}, b.prototype.to = function(b) {
var c = this,
d = this.getActiveIndex();
return b > this.$items.length - 1 || 0 > b ? void 0 : this.sliding ? this.$element.one(
"slid.bs.carousel", function() {
c.to( b )
}
) : d == b ? this.pause().cycle() : this.slide( b > d ? "next" : "prev", a( this.$items[b] ) )
}, b.prototype.pause = function(b) {
return b || (this.paused = ! 0), this.$element.find( ".next, .prev" ).length && a.support.transition && (this.$element.trigger( a.support.transition.end ), this.cycle( ! 0 )), this.interval = clearInterval( this.interval ), this
}, b.prototype.next = function() {
return this.sliding ? void 0 : this.slide( "next" )
}, b.prototype.prev = function() {
return this.sliding ? void 0 : this.slide( "prev" )
}, b.prototype.slide = function(b, c) {
var d = this.$element.find( ".item.active" ),
e = c || d[b](),
f = this.interval,
g = "next" == b ? "left" : "right",
h = "next" == b ? "first" : "last",
i = this;
if ( ! e.length) {
if ( ! this.options.wrap) {
return;
}
e = this.$element.find( ".item" )[h]()
}
if (e.hasClass( "active" )) {
return this.sliding = ! 1;
}
var j = a.Event(
"slide.bs.carousel", {
relatedTarget: e[0],
direction: g
}
);
return this.$element.trigger( j ), j.isDefaultPrevented() ? void 0 : (this.sliding = ! 0, f && this.pause(), this.$indicators.length && (this.$indicators.find( ".active" ).removeClass( "active" ), this.$element.one(
"slid.bs.carousel", function() {
var b = a( i.$indicators.children()[i.getActiveIndex()] );
b && b.addClass( "active" )
}
)), a.support.transition && this.$element.hasClass( "slide" ) ? (e.addClass( b ), e[0].offsetWidth, d.addClass( g ), e.addClass( g ), d.one(
a.support.transition.end, function() {
e.removeClass( [b, g].join( " " ) ).addClass( "active" ), d.removeClass( ["active", g].join( " " ) ), i.sliding = ! 1, setTimeout(
function() {
i.$element.trigger( "slid.bs.carousel" )
}, 0
)
}
).emulateTransitionEnd( 1e3 * d.css( "transition-duration" ).slice( 0, -1 ) )) : (d.removeClass( "active" ), e.addClass( "active" ), this.sliding = ! 1, this.$element.trigger( "slid.bs.carousel" )), f && this.cycle(), this)
};
var c = a.fn.carousel;
a.fn.carousel = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.carousel" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c ),
g = "string" == typeof c ? c : f.slide;
e || d.data( "bs.carousel", e = new b( this, f ) ), "number" == typeof c ? e.to( c ) : g ? e[g]() : f.interval && e.pause().cycle()
}
)
}, a.fn.carousel.Constructor = b, a.fn.carousel.noConflict = function() {
return a.fn.carousel = c, this
}, a( document ).on(
"click.bs.carousel.data-api", "[data-slide], [data-slide-to]", function(b) {
var c, d = a( this ),
e = a( d.attr( "data-target" ) || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = a.extend( {}, e.data(), d.data() ),
g = d.attr( "data-slide-to" );
g && (f.interval = ! 1), e.carousel( f ), (g = d.attr( "data-slide-to" )) && e.data( "bs.carousel" ).to( g ), b.preventDefault()
}
), a( window ).on(
"load", function() {
a( '[data-ride="carousel"]' ).each(
function() {
var b = a( this );
b.carousel( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.$element = a( c ), this.options = a.extend( {}, b.DEFAULTS, d ), this.transitioning = null, this.options.parent && (this.$parent = a( this.options.parent )), this.options.toggle && this.toggle()
};
b.DEFAULTS = {
toggle: ! 0
}, b.prototype.dimension = function() {
var a = this.$element.hasClass( "width" );
return a ? "width" : "height"
}, b.prototype.show = function() {
if ( ! this.transitioning && ! this.$element.hasClass( "in" )) {
var b = a.Event( "show.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.$parent && this.$parent.find( "> .panel > .in" );
if (c && c.length) {
var d = c.data( "bs.collapse" );
if (d && d.transitioning) {
return;
}
c.collapse( "hide" ), d || c.data( "bs.collapse", null )
}
var e = this.dimension();
this.$element.removeClass( "collapse" ).addClass( "collapsing" )[e](0), this.transitioning = 1;
var f = function() {
this.$element.removeClass( "collapsing" ).addClass( "collapse in" )[e]("auto"), this.transitioning = 0, this.$element.trigger( "shown.bs.collapse" )
};
if ( ! a.support.transition) {
return f.call( this );
}
var g = a.camelCase( ["scroll", e].join( "-" ) );
this.$element.one( a.support.transition.end, a.proxy( f, this ) ).emulateTransitionEnd( 350 )[e](this.$element[0][g])
}
}
}, b.prototype.hide = function() {
if ( ! this.transitioning && this.$element.hasClass( "in" )) {
var b = a.Event( "hide.bs.collapse" );
if (this.$element.trigger( b ), ! b.isDefaultPrevented()) {
var c = this.dimension();
this.$element[c](this.$element[c]())[0].offsetHeight, this.$element.addClass( "collapsing" ).removeClass( "collapse" ).removeClass( "in" ), this.transitioning = 1;
var d = function() {
this.transitioning = 0, this.$element.trigger( "hidden.bs.collapse" ).removeClass( "collapsing" ).addClass( "collapse" )
};
return a.support.transition ? void this.$element[c](0).one( a.support.transition.end, a.proxy( d, this ) ).emulateTransitionEnd( 350 ) : d.call( this )
}
}
}, b.prototype.toggle = function() {
this[this.$element.hasClass( "in" ) ? "hide" : "show"]()
};
var c = a.fn.collapse;
a.fn.collapse = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.collapse" ),
f = a.extend( {}, b.DEFAULTS, d.data(), "object" == typeof c && c );
! e && f.toggle && "show" == c && (c = ! c), e || d.data( "bs.collapse", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.collapse.Constructor = b, a.fn.collapse.noConflict = function() {
return a.fn.collapse = c, this
}, a( document ).on(
"click.bs.collapse.data-api", "[data-toggle=collapse]", function(b) {
var c, d = a( this ),
e = d.attr( "data-target" ) || b.preventDefault() || (c = d.attr( "href" )) && c.replace( /.*(?=#[^\s]+$)/, "" ),
f = a( e ),
g = f.data( "bs.collapse" ),
h = g ? "toggle" : d.data(),
i = d.attr( "data-parent" ),
j = i && a( i );
g && g.transitioning || (j && j.find( '[data-toggle=collapse][data-parent="' + i + '"]' ).not( d ).addClass( "collapsed" ), d[f.hasClass( "in" ) ? "addClass" : "removeClass"]("collapsed")), f.collapse( h )
}
)
}(jQuery), + function(a) {
"use strict";
function b(b) {
a( d ).remove(), a( e ).each(
function() {
var d = c( a( this ) ),
e = {
relatedTarget: this
};
d.hasClass( "open" ) && (d.trigger( b = a.Event( "hide.bs.dropdown", e ) ), b.isDefaultPrevented() || d.removeClass( "open" ).trigger( "hidden.bs.dropdown", e ))
}
)
}
function c(b) {
var c = b.attr( "data-target" );
c || (c = b.attr( "href" ), c = c && /#[A-Za-z]/.test( c ) && c.replace( /.*(?=#[^\s]*$)/, "" ));
var d = c && a( c );
return d && d.length ? d : b.parent()
}
var d = ".dropdown-backdrop",
e = "[data-toggle=dropdown]",
f = function(b) {
a( b ).on( "click.bs.dropdown", this.toggle )
};
f.prototype.toggle = function(d) {
var e = a( this );
if ( ! e.is( ".disabled, :disabled" )) {
var f = c( e ),
g = f.hasClass( "open" );
if (b(), ! g) {
"ontouchstart" in document.documentElement && ! f.closest( ".navbar-nav" ).length && a( '<div class="dropdown-backdrop"/>' ).insertAfter( a( this ) ).on( "click", b );
var h = {
relatedTarget: this
};
if (f.trigger( d = a.Event( "show.bs.dropdown", h ) ), d.isDefaultPrevented()) {
return;
}
f.toggleClass( "open" ).trigger( "shown.bs.dropdown", h ), e.focus()
}
return ! 1
}
}, f.prototype.keydown = function(b) {
if (/(38|40|27)/.test( b.keyCode )) {
var d = a( this );
if (b.preventDefault(), b.stopPropagation(), ! d.is( ".disabled, :disabled" )) {
var f = c( d ),
g = f.hasClass( "open" );
if ( ! g || g && 27 == b.keyCode) {
return 27 == b.which && f.find( e ).focus(), d.click();
}
var h = " li:not(.divider):visible a",
i = f.find( "[role=menu]" + h + ", [role=listbox]" + h );
if (i.length) {
var j = i.index( i.filter( ":focus" ) );
38 == b.keyCode && j > 0 && j--, 40 == b.keyCode && j < i.length - 1 && j++, ~j || (j = 0), i.eq( j ).focus()
}
}
}
};
var g = a.fn.dropdown;
a.fn.dropdown = function(b) {
return this.each(
function() {
var c = a( this ),
d = c.data( "bs.dropdown" );
d || c.data( "bs.dropdown", d = new f( this ) ), "string" == typeof b && d[b].call( c )
}
)
}, a.fn.dropdown.Constructor = f, a.fn.dropdown.noConflict = function() {
return a.fn.dropdown = g, this
}, a( document ).on( "click.bs.dropdown.data-api", b ).on(
"click.bs.dropdown.data-api", ".dropdown form", function(a) {
a.stopPropagation()
}
).on( "click.bs.dropdown.data-api", e, f.prototype.toggle ).on( "keydown.bs.dropdown.data-api", e + ", [role=menu], [role=listbox]", f.prototype.keydown )
}(jQuery), + function(a) {
"use strict";
var b = function(b, c) {
this.options = c, this.$element = a( b ), this.$backdrop = this.isShown = null, this.options.remote && this.$element.find( ".modal-content" ).load(
this.options.remote, a.proxy(
function() {
this.$element.trigger( "loaded.bs.modal" )
}, this
)
)
};
b.DEFAULTS = {
backdrop: ! 0,
keyboard: ! 0,
show: ! 0
}, b.prototype.toggle = function(a) {
return this[this.isShown ? "hide" : "show"](a)
}, b.prototype.show = function(b) {
var c = this,
d = a.Event(
"show.bs.modal", {
relatedTarget: b
}
);
this.$element.trigger( d ), this.isShown || d.isDefaultPrevented() || (this.isShown = ! 0, this.escape(), this.$element.on( "click.dismiss.bs.modal", '[data-dismiss="modal"]', a.proxy( this.hide, this ) ), this.backdrop(
function() {
var d = a.support.transition && c.$element.hasClass( "fade" );
c.$element.parent().length || c.$element.appendTo( document.body ), c.$element.show().scrollTop( 0 ), d && c.$element[0].offsetWidth, c.$element.addClass( "in" ).attr( "aria-hidden", ! 1 ), c.enforceFocus();
var e = a.Event(
"shown.bs.modal", {
relatedTarget: b
}
);
d ? c.$element.find( ".modal-dialog" ).one(
a.support.transition.end, function() {
c.$element.focus().trigger( e )
}
).emulateTransitionEnd( 300 ) : c.$element.focus().trigger( e )
}
))
}, b.prototype.hide = function(b) {
b && b.preventDefault(), b = a.Event( "hide.bs.modal" ), this.$element.trigger( b ), this.isShown && ! b.isDefaultPrevented() && (this.isShown = ! 1, this.escape(), a( document ).off( "focusin.bs.modal" ), this.$element.removeClass( "in" ).attr( "aria-hidden", ! 0 ).off( "click.dismiss.bs.modal" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$element.one( a.support.transition.end, a.proxy( this.hideModal, this ) ).emulateTransitionEnd( 300 ) : this.hideModal())
}, b.prototype.enforceFocus = function() {
a( document ).off( "focusin.bs.modal" ).on(
"focusin.bs.modal", a.proxy(
function(a) {
this.$element[0] === a.target || this.$element.has( a.target ).length || this.$element.focus()
}, this
)
)
}, b.prototype.escape = function() {
this.isShown && this.options.keyboard ? this.$element.on(
"keyup.dismiss.bs.modal", a.proxy(
function(a) {
27 == a.which && this.hide()
}, this
)
) : this.isShown || this.$element.off( "keyup.dismiss.bs.modal" )
}, b.prototype.hideModal = function() {
var a = this;
this.$element.hide(), this.backdrop(
function() {
a.removeBackdrop(), a.$element.trigger( "hidden.bs.modal" )
}
)
}, b.prototype.removeBackdrop = function() {
this.$backdrop && this.$backdrop.remove(), this.$backdrop = null
}, b.prototype.backdrop = function(b) {
var c = this.$element.hasClass( "fade" ) ? "fade" : "";
if (this.isShown && this.options.backdrop) {
var d = a.support.transition && c;
if (this.$backdrop = a( '<div class="modal-backdrop ' + c + '" />' ).appendTo( document.body ), this.$element.on(
"click.dismiss.bs.modal", a.proxy(
function(a) {
a.target === a.currentTarget && ("static" == this.options.backdrop ? this.$element[0].focus.call( this.$element[0] ) : this.hide.call( this ))
}, this
)
), d && this.$backdrop[0].offsetWidth, this.$backdrop.addClass( "in" ), ! b) {
return;
}
d ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()
} else {
! this.isShown && this.$backdrop ? (this.$backdrop.removeClass( "in" ), a.support.transition && this.$element.hasClass( "fade" ) ? this.$backdrop.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b()) : b && b()
}
};
var c = a.fn.modal;
a.fn.modal = function(c, d) {
return this.each(
function() {
var e = a( this ),
f = e.data( "bs.modal" ),
g = a.extend( {}, b.DEFAULTS, e.data(), "object" == typeof c && c );
f || e.data( "bs.modal", f = new b( this, g ) ), "string" == typeof c ? f[c](d) : g.show && f.show( d )
}
)
}, a.fn.modal.Constructor = b, a.fn.modal.noConflict = function() {
return a.fn.modal = c, this
}, a( document ).on(
"click.bs.modal.data-api", '[data-toggle="modal"]', function(b) {
var c = a( this ),
d = c.attr( "href" ),
e = a( c.attr( "data-target" ) || d && d.replace( /.*(?=#[^\s]+$)/, "" ) ),
f = e.data( "bs.modal" ) ? "toggle" : a.extend(
{
remote: ! / # / .test( d ) && d
}, e.data(), c.data()
);
c.is( "a" ) && b.preventDefault(), e.modal( f, this ).one(
"hide", function() {
c.is( ":visible" ) && c.focus()
}
)
}
), a( document ).on(
"show.bs.modal", ".modal", function() {
a( document.body ).addClass( "modal-open" )
}
).on(
"hidden.bs.modal", ".modal", function() {
a( document.body ).removeClass( "modal-open" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.type = this.options = this.enabled = this.timeout = this.hoverState = this.$element = null, this.init( "tooltip", a, b )
};
b.DEFAULTS = {
animation: ! 0,
placement: "top",
selector: ! 1,
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
trigger: "hover focus",
title: "",
delay: 0,
html: ! 1,
container: ! 1
}, b.prototype.init = function(b, c, d) {
this.enabled = ! 0, this.type = b, this.$element = a( c ), this.options = this.getOptions( d );
for (var e = this.options.trigger.split( " " ), f = e.length; f--;) {
var g = e[f];
if ("click" == g) {
this.$element.on( "click." + this.type, this.options.selector, a.proxy( this.toggle, this ) );
} else if ("manual" != g) {
var h = "hover" == g ? "mouseenter" : "focusin",
i = "hover" == g ? "mouseleave" : "focusout";
this.$element.on( h + "." + this.type, this.options.selector, a.proxy( this.enter, this ) ), this.$element.on( i + "." + this.type, this.options.selector, a.proxy( this.leave, this ) )
}
}
this.options.selector ? this._options = a.extend(
{}, this.options, {
trigger: "manual",
selector: ""
}
) : this.fixTitle()
}, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.getOptions = function(b) {
return b = a.extend( {}, this.getDefaults(), this.$element.data(), b ), b.delay && "number" == typeof b.delay && (b.delay = {
show: b.delay,
hide: b.delay
}), b
}, b.prototype.getDelegateOptions = function() {
var b = {},
c = this.getDefaults();
return this._options && a.each(
this._options, function(a, d) {
c[a] != d && (b[a] = d)
}
), b
}, b.prototype.enter = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "in", c.options.delay && c.options.delay.show ? void(
c.timeout = setTimeout(
function() {
"in" == c.hoverState && c.show()
}, c.options.delay.show
)
) : c.show()
}, b.prototype.leave = function(b) {
var c = b instanceof this.constructor ? b : a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type );
return clearTimeout( c.timeout ), c.hoverState = "out", c.options.delay && c.options.delay.hide ? void(
c.timeout = setTimeout(
function() {
"out" == c.hoverState && c.hide()
}, c.options.delay.hide
)
) : c.hide()
}, b.prototype.show = function() {
var b = a.Event( "show.bs." + this.type );
if (this.hasContent() && this.enabled) {
if (this.$element.trigger( b ), b.isDefaultPrevented()) {
return;
}
var c = this,
d = this.tip();
this.setContent(), this.options.animation && d.addClass( "fade" );
var e = "function" == typeof this.options.placement ? this.options.placement.call( this, d[0], this.$element[0] ) : this.options.placement,
f = /\s?auto?\s?/i,
g = f.test( e );
g && (e = e.replace( f, "" ) || "top"), d.detach().css(
{
top: 0,
left: 0,
display: "block"
}
).addClass( e ), this.options.container ? d.appendTo( this.options.container ) : d.insertAfter( this.$element );
var h = this.getPosition(),
i = d[0].offsetWidth,
j = d[0].offsetHeight;
if (g) {
var k = this.$element.parent(),
l = e,
m = document.documentElement.scrollTop || document.body.scrollTop,
n = "body" == this.options.container ? window.innerWidth : k.outerWidth(),
o = "body" == this.options.container ? window.innerHeight : k.outerHeight(),
p = "body" == this.options.container ? 0 : k.offset().left;
e = "bottom" == e && h.top + h.height + j - m > o ? "top" : "top" == e && h.top - m - j < 0 ? "bottom" : "right" == e && h.right + i > n ? "left" : "left" == e && h.left - i < p ? "right" : e, d.removeClass( l ).addClass( e )
}
var q = this.getCalculatedOffset( e, h, i, j );
this.applyPlacement( q, e ), this.hoverState = null;
var r = function() {
c.$element.trigger( "shown.bs." + c.type )
};
a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, r ).emulateTransitionEnd( 150 ) : r()
}
}, b.prototype.applyPlacement = function(b, c) {
var d, e = this.tip(),
f = e[0].offsetWidth,
g = e[0].offsetHeight,
h = parseInt( e.css( "margin-top" ), 10 ),
i = parseInt( e.css( "margin-left" ), 10 );
isNaN( h ) && (h = 0), isNaN( i ) && (i = 0), b.top = b.top + h, b.left = b.left + i, a.offset.setOffset(
e[0], a.extend(
{
using: function(a) {
e.css(
{
top: Math.round( a.top ),
left: Math.round( a.left )
}
)
}
}, b
), 0
), e.addClass( "in" );
var j = e[0].offsetWidth,
k = e[0].offsetHeight;
if ("top" == c && k != g && (d = ! 0, b.top = b.top + g - k), /bottom|top/.test( c )) {
var l = 0;
b.left < 0 && (l = -2 * b.left, b.left = 0, e.offset( b ), j = e[0].offsetWidth, k = e[0].offsetHeight), this.replaceArrow( l - f + j, j, "left" )
} else {
this.replaceArrow( k - g, k, "top" );
}
d && e.offset( b )
}, b.prototype.replaceArrow = function(a, b, c) {
this.arrow().css( c, a ? 50 * (1 - a / b) + "%" : "" )
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle();
a.find( ".tooltip-inner" )[this.options.html ? "html" : "text"](b), a.removeClass( "fade in top bottom left right" )
}, b.prototype.hide = function() {
function b() {
"in" != c.hoverState && d.detach(), c.$element.trigger( "hidden.bs." + c.type )
}
var c = this,
d = this.tip(),
e = a.Event( "hide.bs." + this.type );
return this.$element.trigger( e ), e.isDefaultPrevented() ? void 0 : (d.removeClass( "in" ), a.support.transition && this.$tip.hasClass( "fade" ) ? d.one( a.support.transition.end, b ).emulateTransitionEnd( 150 ) : b(), this.hoverState = null, this)
}, b.prototype.fixTitle = function() {
var a = this.$element;
(a.attr( "title" ) || "string" != typeof a.attr( "data-original-title" )) && a.attr( "data-original-title", a.attr( "title" ) || "" ).attr( "title", "" )
}, b.prototype.hasContent = function() {
return this.getTitle()
}, b.prototype.getPosition = function() {
var b = this.$element[0];
return a.extend(
{}, "function" == typeof b.getBoundingClientRect ? b.getBoundingClientRect() : {
width: b.offsetWidth,
height: b.offsetHeight
}, this.$element.offset()
)
}, b.prototype.getCalculatedOffset = function(a, b, c, d) {
return "bottom" == a ? {
top: b.top + b.height,
left: b.left + b.width / 2 - c / 2
} : "top" == a ? {
top: b.top - d,
left: b.left + b.width / 2 - c / 2
} : "left" == a ? {
top: b.top + b.height / 2 - d / 2,
left: b.left - c
} : {
top: b.top + b.height / 2 - d / 2,
left: b.left + b.width
}
}, b.prototype.getTitle = function() {
var a, b = this.$element,
c = this.options;
return a = b.attr( "data-original-title" ) || ("function" == typeof c.title ? c.title.call( b[0] ) : c.title)
}, b.prototype.tip = function() {
return this.$tip = this.$tip || a( this.options.template )
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".tooltip-arrow" )
}, b.prototype.validate = function() {
this.$element[0].parentNode || (this.hide(), this.$element = null, this.options = null)
}, b.prototype.enable = function() {
this.enabled = ! 0
}, b.prototype.disable = function() {
this.enabled = ! 1
}, b.prototype.toggleEnabled = function() {
this.enabled = ! this.enabled
}, b.prototype.toggle = function(b) {
var c = b ? a( b.currentTarget )[this.type](this.getDelegateOptions()).data( "bs." + this.type ) : this;
c.tip().hasClass( "in" ) ? c.leave( c ) : c.enter( c )
}, b.prototype.destroy = function() {
clearTimeout( this.timeout ), this.hide().$element.off( "." + this.type ).removeData( "bs." + this.type )
};
var c = a.fn.tooltip;
a.fn.tooltip = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tooltip" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.tooltip", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.tooltip.Constructor = b, a.fn.tooltip.noConflict = function() {
return a.fn.tooltip = c, this
}
}(jQuery), + function(a) {
"use strict";
var b = function(a, b) {
this.init( "popover", a, b )
};
if ( ! a.fn.tooltip) {
throw new Error( "Popover requires tooltip.js" );
}
b.DEFAULTS = a.extend(
{}, a.fn.tooltip.Constructor.DEFAULTS, {
placement: "right",
trigger: "click",
content: "",
template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
}
), b.prototype = a.extend( {}, a.fn.tooltip.Constructor.prototype ), b.prototype.constructor = b, b.prototype.getDefaults = function() {
return b.DEFAULTS
}, b.prototype.setContent = function() {
var a = this.tip(),
b = this.getTitle(),
c = this.getContent();
a.find( ".popover-title" )[this.options.html ? "html" : "text"](b), a.find( ".popover-content" )[this.options.html ? "string" == typeof c ? "html" : "append" : "text"](c), a.removeClass( "fade top bottom left right in" ), a.find( ".popover-title" ).html() || a.find( ".popover-title" ).hide()
}, b.prototype.hasContent = function() {
return this.getTitle() || this.getContent()
}, b.prototype.getContent = function() {
var a = this.$element,
b = this.options;
return a.attr( "data-content" ) || ("function" == typeof b.content ? b.content.call( a[0] ) : b.content)
}, b.prototype.arrow = function() {
return this.$arrow = this.$arrow || this.tip().find( ".arrow" )
}, b.prototype.tip = function() {
return this.$tip || (this.$tip = a( this.options.template )), this.$tip
};
var c = a.fn.popover;
a.fn.popover = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.popover" ),
f = "object" == typeof c && c;
(e || "destroy" != c) && (e || d.data( "bs.popover", e = new b( this, f ) ), "string" == typeof c && e[c]())
}
)
}, a.fn.popover.Constructor = b, a.fn.popover.noConflict = function() {
return a.fn.popover = c, this
}
}(jQuery), + function(a) {
"use strict";
function b(c, d) {
var e, f = a.proxy( this.process, this );
this.$element = a( a( c ).is( "body" ) ? window : c ), this.$body = a( "body" ), this.$scrollElement = this.$element.on( "scroll.bs.scroll-spy.data-api", f ), this.options = a.extend( {}, b.DEFAULTS, d ), this.selector = (this.options.target || (e = a( c ).attr( "href" )) && e.replace( /.*(?=#[^\s]+$)/, "" ) || "") + " .nav li > a", this.offsets = a( [] ), this.targets = a( [] ), this.activeTarget = null, this.refresh(), this.process()
}
b.DEFAULTS = {
offset: 10
}, b.prototype.refresh = function() {
var b = this.$element[0] == window ? "offset" : "position";
this.offsets = a( [] ), this.targets = a( [] ); {
var c = this;
this.$body.find( this.selector ).map(
function() {
var d = a( this ),
e = d.data( "target" ) || d.attr( "href" ),
f = /^#./.test( e ) && a( e );
return f && f.length && f.is( ":visible" ) && [
[f[b]().top + ( ! a.isWindow( c.$scrollElement.get( 0 ) ) && c.$scrollElement.scrollTop()), e]
] || null
}
).sort(
function(a, b) {
return a[0] - b[0]
}
).each(
function() {
c.offsets.push( this[0] ), c.targets.push( this[1] )
}
)
}
}, b.prototype.process = function() {
var a, b = this.$scrollElement.scrollTop() + this.options.offset,
c = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight,
d = c - this.$scrollElement.height(),
e = this.offsets,
f = this.targets,
g = this.activeTarget;
if (b >= d) {
return g != (a = f.last()[0]) && this.activate( a );
}
if (g && b <= e[0]) {
return g != (a = f[0]) && this.activate( a );
}
for (a = e.length; a--;) {
g != f[a] && b >= e[a] && ( ! e[a + 1] || b <= e[a + 1]) && this.activate( f[a] )
}
}, b.prototype.activate = function(b) {
this.activeTarget = b, a( this.selector ).parentsUntil( this.options.target, ".active" ).removeClass( "active" );
var c = this.selector + '[data-target="' + b + '"],' + this.selector + '[href="' + b + '"]',
d = a( c ).parents( "li" ).addClass( "active" );
d.parent( ".dropdown-menu" ).length && (d = d.closest( "li.dropdown" ).addClass( "active" )), d.trigger( "activate.bs.scrollspy" )
};
var c = a.fn.scrollspy;
a.fn.scrollspy = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.scrollspy" ),
f = "object" == typeof c && c;
e || d.data( "bs.scrollspy", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.scrollspy.Constructor = b, a.fn.scrollspy.noConflict = function() {
return a.fn.scrollspy = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="scroll"]' ).each(
function() {
var b = a( this );
b.scrollspy( b.data() )
}
)
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(b) {
this.element = a( b )
};
b.prototype.show = function() {
var b = this.element,
c = b.closest( "ul:not(.dropdown-menu)" ),
d = b.data( "target" );
if (d || (d = b.attr( "href" ), d = d && d.replace( /.*(?=#[^\s]*$)/, "" )), ! b.parent( "li" ).hasClass( "active" )) {
var e = c.find( ".active:last a" )[0],
f = a.Event(
"show.bs.tab", {
relatedTarget: e
}
);
if (b.trigger( f ), ! f.isDefaultPrevented()) {
var g = a( d );
this.activate( b.parent( "li" ), c ), this.activate(
g, g.parent(), function() {
b.trigger(
{
type: "shown.bs.tab",
relatedTarget: e
}
)
}
)
}
}
}, b.prototype.activate = function(b, c, d) {
function e() {
f.removeClass( "active" ).find( "> .dropdown-menu > .active" ).removeClass( "active" ), b.addClass( "active" ), g ? (b[0].offsetWidth, b.addClass( "in" )) : b.removeClass( "fade" ), b.parent( ".dropdown-menu" ) && b.closest( "li.dropdown" ).addClass( "active" ), d && d()
}
var f = c.find( "> .active" ),
g = d && a.support.transition && f.hasClass( "fade" );
g ? f.one( a.support.transition.end, e ).emulateTransitionEnd( 150 ) : e(), f.removeClass( "in" )
};
var c = a.fn.tab;
a.fn.tab = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.tab" );
e || d.data( "bs.tab", e = new b( this ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.tab.Constructor = b, a.fn.tab.noConflict = function() {
return a.fn.tab = c, this
}, a( document ).on(
"click.bs.tab.data-api", '[data-toggle="tab"], [data-toggle="pill"]', function(b) {
b.preventDefault(), a( this ).tab( "show" )
}
)
}(jQuery), + function(a) {
"use strict";
var b = function(c, d) {
this.options = a.extend( {}, b.DEFAULTS, d ), this.$window = a( window ).on( "scroll.bs.affix.data-api", a.proxy( this.checkPosition, this ) ).on( "click.bs.affix.data-api", a.proxy( this.checkPositionWithEventLoop, this ) ), this.$element = a( c ), this.affixed = this.unpin = this.pinnedOffset = null, this.checkPosition()
};
b.RESET = "affix affix-top affix-bottom", b.DEFAULTS = {
offset: 0
}, b.prototype.getPinnedOffset = function() {
if (this.pinnedOffset) {
return this.pinnedOffset;
}
this.$element.removeClass( b.RESET ).addClass( "affix" );
var a = this.$window.scrollTop(),
c = this.$element.offset();
return this.pinnedOffset = c.top - a
}, b.prototype.checkPositionWithEventLoop = function() {
setTimeout( a.proxy( this.checkPosition, this ), 1 )
}, b.prototype.checkPosition = function() {
if (this.$element.is( ":visible" )) {
var c = a( document ).height(),
d = this.$window.scrollTop(),
e = this.$element.offset(),
f = this.options.offset,
g = f.top,
h = f.bottom;
"top" == this.affixed && (e.top += d), "object" != typeof f && (h = g = f), "function" == typeof g && (g = f.top( this.$element )), "function" == typeof h && (h = f.bottom( this.$element ));
var i = null != this.unpin && d + this.unpin <= e.top ? ! 1 : null != h && e.top + this.$element.height() >= c - h ? "bottom" : null != g && g >= d ? "top" : ! 1;
if (this.affixed !== i) {
this.unpin && this.$element.css( "top", "" );
var j = "affix" + (i ? "-" + i : ""),
k = a.Event( j + ".bs.affix" );
this.$element.trigger( k ), k.isDefaultPrevented() || (this.affixed = i, this.unpin = "bottom" == i ? this.getPinnedOffset() : null, this.$element.removeClass( b.RESET ).addClass( j ).trigger( a.Event( j.replace( "affix", "affixed" ) ) ), "bottom" == i && this.$element.offset(
{
top: c - h - this.$element.height()
}
))
}
}
};
var c = a.fn.affix;
a.fn.affix = function(c) {
return this.each(
function() {
var d = a( this ),
e = d.data( "bs.affix" ),
f = "object" == typeof c && c;
e || d.data( "bs.affix", e = new b( this, f ) ), "string" == typeof c && e[c]()
}
)
}, a.fn.affix.Constructor = b, a.fn.affix.noConflict = function() {
return a.fn.affix = c, this
}, a( window ).on(
"load", function() {
a( '[data-spy="affix"]' ).each(
function() {
var b = a( this ),
c = b.data();
c.offset = c.offset || {}, c.offsetBottom && (c.offset.bottom = c.offsetBottom), c.offsetTop && (c.offset.top = c.offsetTop), b.affix( c )
}
)
}
)
}(jQuery);