|
|
@ -1,7 +1,7 @@ |
|
|
|
/*! |
|
|
|
/*! |
|
|
|
* Bootstrap v3.3.2 (http://getbootstrap.com)
|
|
|
|
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
|
|
* Licensed under the MIT license |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
if (typeof jQuery === 'undefined') { |
|
|
|
if (typeof jQuery === 'undefined') { |
|
|
@ -17,7 +17,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: transition.js v3.3.2 |
|
|
|
* Bootstrap: transition.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#transitions
|
|
|
|
* http://getbootstrap.com/javascript/#transitions
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -77,7 +77,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: alert.js v3.3.2 |
|
|
|
* Bootstrap: alert.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#alerts
|
|
|
|
* http://getbootstrap.com/javascript/#alerts
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -96,7 +96,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
$(el).on('click', dismiss, this.close) |
|
|
|
$(el).on('click', dismiss, this.close) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Alert.VERSION = '3.3.2' |
|
|
|
Alert.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Alert.TRANSITION_DURATION = 150 |
|
|
|
Alert.TRANSITION_DURATION = 150 |
|
|
|
|
|
|
|
|
|
|
@ -172,7 +172,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: button.js v3.3.2 |
|
|
|
* Bootstrap: button.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#buttons
|
|
|
|
* http://getbootstrap.com/javascript/#buttons
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -192,7 +192,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
this.isLoading = false |
|
|
|
this.isLoading = false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Button.VERSION = '3.3.2' |
|
|
|
Button.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Button.DEFAULTS = { |
|
|
|
Button.DEFAULTS = { |
|
|
|
loadingText: 'loading...' |
|
|
|
loadingText: 'loading...' |
|
|
@ -204,7 +204,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var val = $el.is('input') ? 'val' : 'html' |
|
|
|
var val = $el.is('input') ? 'val' : 'html' |
|
|
|
var data = $el.data() |
|
|
|
var data = $el.data() |
|
|
|
|
|
|
|
|
|
|
|
state = state + 'Text' |
|
|
|
state += 'Text' |
|
|
|
|
|
|
|
|
|
|
|
if (data.resetText == null) $el.data('resetText', $el[val]()) |
|
|
|
if (data.resetText == null) $el.data('resetText', $el[val]()) |
|
|
|
|
|
|
|
|
|
|
@ -229,15 +229,19 @@ if (typeof jQuery === 'undefined') { |
|
|
|
if ($parent.length) { |
|
|
|
if ($parent.length) { |
|
|
|
var $input = this.$element.find('input') |
|
|
|
var $input = this.$element.find('input') |
|
|
|
if ($input.prop('type') == 'radio') { |
|
|
|
if ($input.prop('type') == 'radio') { |
|
|
|
if ($input.prop('checked') && this.$element.hasClass('active')) changed = false |
|
|
|
if ($input.prop('checked')) changed = false |
|
|
|
else $parent.find('.active').removeClass('active') |
|
|
|
$parent.find('.active').removeClass('active') |
|
|
|
} |
|
|
|
this.$element.addClass('active') |
|
|
|
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change') |
|
|
|
} else if ($input.prop('type') == 'checkbox') { |
|
|
|
|
|
|
|
if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false |
|
|
|
|
|
|
|
this.$element.toggleClass('active') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$input.prop('checked', this.$element.hasClass('active')) |
|
|
|
|
|
|
|
if (changed) $input.trigger('change') |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
this.$element.attr('aria-pressed', !this.$element.hasClass('active')) |
|
|
|
this.$element.attr('aria-pressed', !this.$element.hasClass('active')) |
|
|
|
|
|
|
|
this.$element.toggleClass('active') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (changed) this.$element.toggleClass('active') |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -280,7 +284,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var $btn = $(e.target) |
|
|
|
var $btn = $(e.target) |
|
|
|
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') |
|
|
|
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') |
|
|
|
Plugin.call($btn, 'toggle') |
|
|
|
Plugin.call($btn, 'toggle') |
|
|
|
e.preventDefault() |
|
|
|
if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault() |
|
|
|
}) |
|
|
|
}) |
|
|
|
.on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { |
|
|
|
.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)) |
|
|
|
$(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type)) |
|
|
@ -289,7 +293,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: carousel.js v3.3.2 |
|
|
|
* Bootstrap: carousel.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#carousel
|
|
|
|
* http://getbootstrap.com/javascript/#carousel
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -307,10 +311,10 @@ if (typeof jQuery === 'undefined') { |
|
|
|
this.$element = $(element) |
|
|
|
this.$element = $(element) |
|
|
|
this.$indicators = this.$element.find('.carousel-indicators') |
|
|
|
this.$indicators = this.$element.find('.carousel-indicators') |
|
|
|
this.options = options |
|
|
|
this.options = options |
|
|
|
this.paused = |
|
|
|
this.paused = null |
|
|
|
this.sliding = |
|
|
|
this.sliding = null |
|
|
|
this.interval = |
|
|
|
this.interval = null |
|
|
|
this.$active = |
|
|
|
this.$active = null |
|
|
|
this.$items = null |
|
|
|
this.$items = null |
|
|
|
|
|
|
|
|
|
|
|
this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) |
|
|
|
this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) |
|
|
@ -320,7 +324,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) |
|
|
|
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Carousel.VERSION = '3.3.2' |
|
|
|
Carousel.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Carousel.TRANSITION_DURATION = 600 |
|
|
|
Carousel.TRANSITION_DURATION = 600 |
|
|
|
|
|
|
|
|
|
|
@ -527,7 +531,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: collapse.js v3.3.2 |
|
|
|
* Bootstrap: collapse.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#collapse
|
|
|
|
* http://getbootstrap.com/javascript/#collapse
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -544,7 +548,8 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var Collapse = function (element, options) { |
|
|
|
var Collapse = function (element, options) { |
|
|
|
this.$element = $(element) |
|
|
|
this.$element = $(element) |
|
|
|
this.options = $.extend({}, Collapse.DEFAULTS, options) |
|
|
|
this.options = $.extend({}, Collapse.DEFAULTS, options) |
|
|
|
this.$trigger = $(this.options.trigger).filter('[href="#' + element.id + '"], [data-target="#' + element.id + '"]') |
|
|
|
this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' + |
|
|
|
|
|
|
|
'[data-toggle="collapse"][data-target="#' + element.id + '"]') |
|
|
|
this.transitioning = null |
|
|
|
this.transitioning = null |
|
|
|
|
|
|
|
|
|
|
|
if (this.options.parent) { |
|
|
|
if (this.options.parent) { |
|
|
@ -556,13 +561,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
if (this.options.toggle) this.toggle() |
|
|
|
if (this.options.toggle) this.toggle() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Collapse.VERSION = '3.3.2' |
|
|
|
Collapse.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Collapse.TRANSITION_DURATION = 350 |
|
|
|
Collapse.TRANSITION_DURATION = 350 |
|
|
|
|
|
|
|
|
|
|
|
Collapse.DEFAULTS = { |
|
|
|
Collapse.DEFAULTS = { |
|
|
|
toggle: true, |
|
|
|
toggle: true |
|
|
|
trigger: '[data-toggle="collapse"]' |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Collapse.prototype.dimension = function () { |
|
|
|
Collapse.prototype.dimension = function () { |
|
|
@ -700,7 +704,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var data = $this.data('bs.collapse') |
|
|
|
var data = $this.data('bs.collapse') |
|
|
|
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) |
|
|
|
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) |
|
|
|
|
|
|
|
|
|
|
|
if (!data && options.toggle && option == 'show') options.toggle = false |
|
|
|
if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false |
|
|
|
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) |
|
|
|
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) |
|
|
|
if (typeof option == 'string') data[option]() |
|
|
|
if (typeof option == 'string') data[option]() |
|
|
|
}) |
|
|
|
}) |
|
|
@ -731,7 +735,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
var $target = getTargetFromTrigger($this) |
|
|
|
var $target = getTargetFromTrigger($this) |
|
|
|
var data = $target.data('bs.collapse') |
|
|
|
var data = $target.data('bs.collapse') |
|
|
|
var option = data ? 'toggle' : $.extend({}, $this.data(), { trigger: this }) |
|
|
|
var option = data ? 'toggle' : $this.data() |
|
|
|
|
|
|
|
|
|
|
|
Plugin.call($target, option) |
|
|
|
Plugin.call($target, option) |
|
|
|
}) |
|
|
|
}) |
|
|
@ -739,7 +743,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: dropdown.js v3.3.2 |
|
|
|
* Bootstrap: dropdown.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#dropdowns
|
|
|
|
* http://getbootstrap.com/javascript/#dropdowns
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -759,7 +763,41 @@ if (typeof jQuery === 'undefined') { |
|
|
|
$(element).on('click.bs.dropdown', this.toggle) |
|
|
|
$(element).on('click.bs.dropdown', this.toggle) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Dropdown.VERSION = '3.3.2' |
|
|
|
Dropdown.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getParent($this) { |
|
|
|
|
|
|
|
var selector = $this.attr('data-target') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!selector) { |
|
|
|
|
|
|
|
selector = $this.attr('href') |
|
|
|
|
|
|
|
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var $parent = selector && $(selector) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $parent && $parent.length ? $parent : $this.parent() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function clearMenus(e) { |
|
|
|
|
|
|
|
if (e && e.which === 3) return |
|
|
|
|
|
|
|
$(backdrop).remove() |
|
|
|
|
|
|
|
$(toggle).each(function () { |
|
|
|
|
|
|
|
var $this = $(this) |
|
|
|
|
|
|
|
var $parent = getParent($this) |
|
|
|
|
|
|
|
var relatedTarget = { relatedTarget: this } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!$parent.hasClass('open')) return |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (e.isDefaultPrevented()) return |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$this.attr('aria-expanded', 'false') |
|
|
|
|
|
|
|
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget) |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Dropdown.prototype.toggle = function (e) { |
|
|
|
Dropdown.prototype.toggle = function (e) { |
|
|
|
var $this = $(this) |
|
|
|
var $this = $(this) |
|
|
@ -774,7 +812,10 @@ if (typeof jQuery === 'undefined') { |
|
|
|
if (!isActive) { |
|
|
|
if (!isActive) { |
|
|
|
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { |
|
|
|
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { |
|
|
|
// if mobile we use a backdrop because click events don't delegate
|
|
|
|
// if mobile we use a backdrop because click events don't delegate
|
|
|
|
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus) |
|
|
|
$(document.createElement('div')) |
|
|
|
|
|
|
|
.addClass('dropdown-backdrop') |
|
|
|
|
|
|
|
.insertAfter($(this)) |
|
|
|
|
|
|
|
.on('click', clearMenus) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var relatedTarget = { relatedTarget: this } |
|
|
|
var relatedTarget = { relatedTarget: this } |
|
|
@ -807,13 +848,13 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var $parent = getParent($this) |
|
|
|
var $parent = getParent($this) |
|
|
|
var isActive = $parent.hasClass('open') |
|
|
|
var isActive = $parent.hasClass('open') |
|
|
|
|
|
|
|
|
|
|
|
if ((!isActive && e.which != 27) || (isActive && e.which == 27)) { |
|
|
|
if (!isActive && e.which != 27 || isActive && e.which == 27) { |
|
|
|
if (e.which == 27) $parent.find(toggle).trigger('focus') |
|
|
|
if (e.which == 27) $parent.find(toggle).trigger('focus') |
|
|
|
return $this.trigger('click') |
|
|
|
return $this.trigger('click') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var desc = ' li:not(.divider):visible a' |
|
|
|
var desc = ' li:not(.disabled):visible a' |
|
|
|
var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc) |
|
|
|
var $items = $parent.find('.dropdown-menu' + desc) |
|
|
|
|
|
|
|
|
|
|
|
if (!$items.length) return |
|
|
|
if (!$items.length) return |
|
|
|
|
|
|
|
|
|
|
@ -826,38 +867,6 @@ if (typeof jQuery === 'undefined') { |
|
|
|
$items.eq(index).trigger('focus') |
|
|
|
$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
|
|
|
|
// DROPDOWN PLUGIN DEFINITION
|
|
|
|
// ==========================
|
|
|
|
// ==========================
|
|
|
@ -895,13 +904,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) |
|
|
|
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) |
|
|
|
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) |
|
|
|
.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', toggle, Dropdown.prototype.keydown) |
|
|
|
.on('keydown.bs.dropdown.data-api', '[role="menu"]', Dropdown.prototype.keydown) |
|
|
|
.on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown) |
|
|
|
.on('keydown.bs.dropdown.data-api', '[role="listbox"]', Dropdown.prototype.keydown) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: modal.js v3.3.2 |
|
|
|
* Bootstrap: modal.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#modals
|
|
|
|
* http://getbootstrap.com/javascript/#modals
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -919,9 +927,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
this.options = options |
|
|
|
this.options = options |
|
|
|
this.$body = $(document.body) |
|
|
|
this.$body = $(document.body) |
|
|
|
this.$element = $(element) |
|
|
|
this.$element = $(element) |
|
|
|
this.$backdrop = |
|
|
|
this.$dialog = this.$element.find('.modal-dialog') |
|
|
|
|
|
|
|
this.$backdrop = null |
|
|
|
this.isShown = null |
|
|
|
this.isShown = null |
|
|
|
|
|
|
|
this.originalBodyPad = null |
|
|
|
this.scrollbarWidth = 0 |
|
|
|
this.scrollbarWidth = 0 |
|
|
|
|
|
|
|
this.ignoreBackdropClick = false |
|
|
|
|
|
|
|
|
|
|
|
if (this.options.remote) { |
|
|
|
if (this.options.remote) { |
|
|
|
this.$element |
|
|
|
this.$element |
|
|
@ -932,7 +943,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Modal.VERSION = '3.3.2' |
|
|
|
Modal.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Modal.TRANSITION_DURATION = 300 |
|
|
|
Modal.TRANSITION_DURATION = 300 |
|
|
|
Modal.BACKDROP_TRANSITION_DURATION = 150 |
|
|
|
Modal.BACKDROP_TRANSITION_DURATION = 150 |
|
|
@ -966,6 +977,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) |
|
|
|
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 () { |
|
|
|
this.backdrop(function () { |
|
|
|
var transition = $.support.transition && that.$element.hasClass('fade') |
|
|
|
var transition = $.support.transition && that.$element.hasClass('fade') |
|
|
|
|
|
|
|
|
|
|
@ -977,23 +994,20 @@ if (typeof jQuery === 'undefined') { |
|
|
|
.show() |
|
|
|
.show() |
|
|
|
.scrollTop(0) |
|
|
|
.scrollTop(0) |
|
|
|
|
|
|
|
|
|
|
|
if (that.options.backdrop) that.adjustBackdrop() |
|
|
|
|
|
|
|
that.adjustDialog() |
|
|
|
that.adjustDialog() |
|
|
|
|
|
|
|
|
|
|
|
if (transition) { |
|
|
|
if (transition) { |
|
|
|
that.$element[0].offsetWidth // force reflow
|
|
|
|
that.$element[0].offsetWidth // force reflow
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
that.$element |
|
|
|
that.$element.addClass('in') |
|
|
|
.addClass('in') |
|
|
|
|
|
|
|
.attr('aria-hidden', false) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
that.enforceFocus() |
|
|
|
that.enforceFocus() |
|
|
|
|
|
|
|
|
|
|
|
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) |
|
|
|
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) |
|
|
|
|
|
|
|
|
|
|
|
transition ? |
|
|
|
transition ? |
|
|
|
that.$element.find('.modal-dialog') // wait for modal to slide in
|
|
|
|
that.$dialog // wait for modal to slide in
|
|
|
|
.one('bsTransitionEnd', function () { |
|
|
|
.one('bsTransitionEnd', function () { |
|
|
|
that.$element.trigger('focus').trigger(e) |
|
|
|
that.$element.trigger('focus').trigger(e) |
|
|
|
}) |
|
|
|
}) |
|
|
@ -1020,8 +1034,10 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
this.$element |
|
|
|
this.$element |
|
|
|
.removeClass('in') |
|
|
|
.removeClass('in') |
|
|
|
.attr('aria-hidden', true) |
|
|
|
|
|
|
|
.off('click.dismiss.bs.modal') |
|
|
|
.off('click.dismiss.bs.modal') |
|
|
|
|
|
|
|
.off('mouseup.dismiss.bs.modal') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.$dialog.off('mousedown.dismiss.bs.modal') |
|
|
|
|
|
|
|
|
|
|
|
$.support.transition && this.$element.hasClass('fade') ? |
|
|
|
$.support.transition && this.$element.hasClass('fade') ? |
|
|
|
this.$element |
|
|
|
this.$element |
|
|
@ -1081,13 +1097,19 @@ if (typeof jQuery === 'undefined') { |
|
|
|
if (this.isShown && this.options.backdrop) { |
|
|
|
if (this.isShown && this.options.backdrop) { |
|
|
|
var doAnimate = $.support.transition && animate |
|
|
|
var doAnimate = $.support.transition && animate |
|
|
|
|
|
|
|
|
|
|
|
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />') |
|
|
|
this.$backdrop = $(document.createElement('div')) |
|
|
|
.prependTo(this.$element) |
|
|
|
.addClass('modal-backdrop ' + animate) |
|
|
|
.on('click.dismiss.bs.modal', $.proxy(function (e) { |
|
|
|
.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 |
|
|
|
if (e.target !== e.currentTarget) return |
|
|
|
this.options.backdrop == 'static' |
|
|
|
this.options.backdrop == 'static' |
|
|
|
? this.$element[0].focus.call(this.$element[0]) |
|
|
|
? this.$element[0].focus() |
|
|
|
: this.hide.call(this) |
|
|
|
: this.hide() |
|
|
|
}, this)) |
|
|
|
}, this)) |
|
|
|
|
|
|
|
|
|
|
|
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
|
|
|
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
|
|
@ -1123,16 +1145,9 @@ if (typeof jQuery === 'undefined') { |
|
|
|
// these following methods are used to handle overflowing modals
|
|
|
|
// these following methods are used to handle overflowing modals
|
|
|
|
|
|
|
|
|
|
|
|
Modal.prototype.handleUpdate = function () { |
|
|
|
Modal.prototype.handleUpdate = function () { |
|
|
|
if (this.options.backdrop) this.adjustBackdrop() |
|
|
|
|
|
|
|
this.adjustDialog() |
|
|
|
this.adjustDialog() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Modal.prototype.adjustBackdrop = function () { |
|
|
|
|
|
|
|
this.$backdrop |
|
|
|
|
|
|
|
.css('height', 0) |
|
|
|
|
|
|
|
.css('height', this.$element[0].scrollHeight) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Modal.prototype.adjustDialog = function () { |
|
|
|
Modal.prototype.adjustDialog = function () { |
|
|
|
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight |
|
|
|
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight |
|
|
|
|
|
|
|
|
|
|
@ -1150,17 +1165,23 @@ if (typeof jQuery === 'undefined') { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Modal.prototype.checkScrollbar = function () { |
|
|
|
Modal.prototype.checkScrollbar = function () { |
|
|
|
this.bodyIsOverflowing = document.body.scrollHeight > document.documentElement.clientHeight |
|
|
|
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() |
|
|
|
this.scrollbarWidth = this.measureScrollbar() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Modal.prototype.setScrollbar = function () { |
|
|
|
Modal.prototype.setScrollbar = function () { |
|
|
|
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) |
|
|
|
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) |
|
|
|
if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Modal.prototype.resetScrollbar = function () { |
|
|
|
Modal.prototype.resetScrollbar = function () { |
|
|
|
this.$body.css('padding-right', '') |
|
|
|
this.$body.css('padding-right', this.originalBodyPad) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Modal.prototype.measureScrollbar = function () { // thx walsh
|
|
|
|
Modal.prototype.measureScrollbar = function () { // thx walsh
|
|
|
@ -1226,7 +1247,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: tooltip.js v3.3.2 |
|
|
|
* Bootstrap: tooltip.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#tooltip
|
|
|
|
* http://getbootstrap.com/javascript/#tooltip
|
|
|
|
* Inspired by the original jQuery.tipsy by Jason Frame |
|
|
|
* Inspired by the original jQuery.tipsy by Jason Frame |
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
@ -1242,17 +1263,18 @@ if (typeof jQuery === 'undefined') { |
|
|
|
// ===============================
|
|
|
|
// ===============================
|
|
|
|
|
|
|
|
|
|
|
|
var Tooltip = function (element, options) { |
|
|
|
var Tooltip = function (element, options) { |
|
|
|
this.type = |
|
|
|
this.type = null |
|
|
|
this.options = |
|
|
|
this.options = null |
|
|
|
this.enabled = |
|
|
|
this.enabled = null |
|
|
|
this.timeout = |
|
|
|
this.timeout = null |
|
|
|
this.hoverState = |
|
|
|
this.hoverState = null |
|
|
|
this.$element = null |
|
|
|
this.$element = null |
|
|
|
|
|
|
|
this.inState = null |
|
|
|
|
|
|
|
|
|
|
|
this.init('tooltip', element, options) |
|
|
|
this.init('tooltip', element, options) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.VERSION = '3.3.2' |
|
|
|
Tooltip.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.TRANSITION_DURATION = 150 |
|
|
|
Tooltip.TRANSITION_DURATION = 150 |
|
|
|
|
|
|
|
|
|
|
@ -1277,7 +1299,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
this.type = type |
|
|
|
this.type = type |
|
|
|
this.$element = $(element) |
|
|
|
this.$element = $(element) |
|
|
|
this.options = this.getOptions(options) |
|
|
|
this.options = this.getOptions(options) |
|
|
|
this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport) |
|
|
|
this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) |
|
|
|
|
|
|
|
this.inState = { click: false, hover: false, focus: false } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.$element[0] instanceof document.constructor && !this.options.selector) { |
|
|
|
|
|
|
|
throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var triggers = this.options.trigger.split(' ') |
|
|
|
var triggers = this.options.trigger.split(' ') |
|
|
|
|
|
|
|
|
|
|
@ -1332,16 +1359,20 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var self = obj instanceof this.constructor ? |
|
|
|
var self = obj instanceof this.constructor ? |
|
|
|
obj : $(obj.currentTarget).data('bs.' + this.type) |
|
|
|
obj : $(obj.currentTarget).data('bs.' + this.type) |
|
|
|
|
|
|
|
|
|
|
|
if (self && self.$tip && self.$tip.is(':visible')) { |
|
|
|
|
|
|
|
self.hoverState = 'in' |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!self) { |
|
|
|
if (!self) { |
|
|
|
self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) |
|
|
|
self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) |
|
|
|
$(obj.currentTarget).data('bs.' + this.type, self) |
|
|
|
$(obj.currentTarget).data('bs.' + this.type, self) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (obj instanceof $.Event) { |
|
|
|
|
|
|
|
self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (self.tip().hasClass('in') || self.hoverState == 'in') { |
|
|
|
|
|
|
|
self.hoverState = 'in' |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
clearTimeout(self.timeout) |
|
|
|
clearTimeout(self.timeout) |
|
|
|
|
|
|
|
|
|
|
|
self.hoverState = 'in' |
|
|
|
self.hoverState = 'in' |
|
|
@ -1353,6 +1384,14 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}, self.options.delay.show) |
|
|
|
}, self.options.delay.show) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.isInStateTrue = function () { |
|
|
|
|
|
|
|
for (var key in this.inState) { |
|
|
|
|
|
|
|
if (this.inState[key]) return true |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return false |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.leave = function (obj) { |
|
|
|
Tooltip.prototype.leave = function (obj) { |
|
|
|
var self = obj instanceof this.constructor ? |
|
|
|
var self = obj instanceof this.constructor ? |
|
|
|
obj : $(obj.currentTarget).data('bs.' + this.type) |
|
|
|
obj : $(obj.currentTarget).data('bs.' + this.type) |
|
|
@ -1362,6 +1401,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
$(obj.currentTarget).data('bs.' + this.type, self) |
|
|
|
$(obj.currentTarget).data('bs.' + this.type, self) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (obj instanceof $.Event) { |
|
|
|
|
|
|
|
self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (self.isInStateTrue()) return |
|
|
|
|
|
|
|
|
|
|
|
clearTimeout(self.timeout) |
|
|
|
clearTimeout(self.timeout) |
|
|
|
|
|
|
|
|
|
|
|
self.hoverState = 'out' |
|
|
|
self.hoverState = 'out' |
|
|
@ -1408,6 +1453,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
.data('bs.' + this.type, this) |
|
|
|
.data('bs.' + this.type, this) |
|
|
|
|
|
|
|
|
|
|
|
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) |
|
|
|
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) |
|
|
|
|
|
|
|
this.$element.trigger('inserted.bs.' + this.type) |
|
|
|
|
|
|
|
|
|
|
|
var pos = this.getPosition() |
|
|
|
var pos = this.getPosition() |
|
|
|
var actualWidth = $tip[0].offsetWidth |
|
|
|
var actualWidth = $tip[0].offsetWidth |
|
|
@ -1415,13 +1461,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
if (autoPlace) { |
|
|
|
if (autoPlace) { |
|
|
|
var orgPlacement = placement |
|
|
|
var orgPlacement = placement |
|
|
|
var $container = this.options.container ? $(this.options.container) : this.$element.parent() |
|
|
|
var viewportDim = this.getPosition(this.$viewport) |
|
|
|
var containerDim = this.getPosition($container) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
placement = placement == 'bottom' && pos.bottom + actualHeight > containerDim.bottom ? 'top' : |
|
|
|
placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : |
|
|
|
placement == 'top' && pos.top - actualHeight < containerDim.top ? 'bottom' : |
|
|
|
placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : |
|
|
|
placement == 'right' && pos.right + actualWidth > containerDim.width ? 'left' : |
|
|
|
placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : |
|
|
|
placement == 'left' && pos.left - actualWidth < containerDim.left ? 'right' : |
|
|
|
placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : |
|
|
|
placement |
|
|
|
placement |
|
|
|
|
|
|
|
|
|
|
|
$tip |
|
|
|
$tip |
|
|
@ -1462,8 +1507,8 @@ if (typeof jQuery === 'undefined') { |
|
|
|
if (isNaN(marginTop)) marginTop = 0 |
|
|
|
if (isNaN(marginTop)) marginTop = 0 |
|
|
|
if (isNaN(marginLeft)) marginLeft = 0 |
|
|
|
if (isNaN(marginLeft)) marginLeft = 0 |
|
|
|
|
|
|
|
|
|
|
|
offset.top = offset.top + marginTop |
|
|
|
offset.top += marginTop |
|
|
|
offset.left = offset.left + marginLeft |
|
|
|
offset.left += marginLeft |
|
|
|
|
|
|
|
|
|
|
|
// $.fn.offset doesn't round pixel values
|
|
|
|
// $.fn.offset doesn't round pixel values
|
|
|
|
// so we use setOffset directly with our own function B-0
|
|
|
|
// so we use setOffset directly with our own function B-0
|
|
|
@ -1499,10 +1544,10 @@ if (typeof jQuery === 'undefined') { |
|
|
|
this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) |
|
|
|
this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.replaceArrow = function (delta, dimension, isHorizontal) { |
|
|
|
Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { |
|
|
|
this.arrow() |
|
|
|
this.arrow() |
|
|
|
.css(isHorizontal ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') |
|
|
|
.css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') |
|
|
|
.css(isHorizontal ? 'top' : 'left', '') |
|
|
|
.css(isVertical ? 'top' : 'left', '') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.setContent = function () { |
|
|
|
Tooltip.prototype.setContent = function () { |
|
|
@ -1515,7 +1560,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.hide = function (callback) { |
|
|
|
Tooltip.prototype.hide = function (callback) { |
|
|
|
var that = this |
|
|
|
var that = this |
|
|
|
var $tip = this.tip() |
|
|
|
var $tip = $(this.$tip) |
|
|
|
var e = $.Event('hide.bs.' + this.type) |
|
|
|
var e = $.Event('hide.bs.' + this.type) |
|
|
|
|
|
|
|
|
|
|
|
function complete() { |
|
|
|
function complete() { |
|
|
@ -1532,7 +1577,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
$tip.removeClass('in') |
|
|
|
$tip.removeClass('in') |
|
|
|
|
|
|
|
|
|
|
|
$.support.transition && this.$tip.hasClass('fade') ? |
|
|
|
$.support.transition && $tip.hasClass('fade') ? |
|
|
|
$tip |
|
|
|
$tip |
|
|
|
.one('bsTransitionEnd', complete) |
|
|
|
.one('bsTransitionEnd', complete) |
|
|
|
.emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : |
|
|
|
.emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : |
|
|
@ -1545,7 +1590,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.fixTitle = function () { |
|
|
|
Tooltip.prototype.fixTitle = function () { |
|
|
|
var $e = this.$element |
|
|
|
var $e = this.$element |
|
|
|
if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') { |
|
|
|
if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { |
|
|
|
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '') |
|
|
|
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '') |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -1600,7 +1645,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var rightEdgeOffset = pos.left + viewportPadding + actualWidth |
|
|
|
var rightEdgeOffset = pos.left + viewportPadding + actualWidth |
|
|
|
if (leftEdgeOffset < viewportDimensions.left) { // left overflow
|
|
|
|
if (leftEdgeOffset < viewportDimensions.left) { // left overflow
|
|
|
|
delta.left = viewportDimensions.left - leftEdgeOffset |
|
|
|
delta.left = viewportDimensions.left - leftEdgeOffset |
|
|
|
} else if (rightEdgeOffset > viewportDimensions.width) { // right overflow
|
|
|
|
} else if (rightEdgeOffset > viewportDimensions.right) { // right overflow
|
|
|
|
delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset |
|
|
|
delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -1626,7 +1671,13 @@ if (typeof jQuery === 'undefined') { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.tip = function () { |
|
|
|
Tooltip.prototype.tip = function () { |
|
|
|
return (this.$tip = this.$tip || $(this.options.template)) |
|
|
|
if (!this.$tip) { |
|
|
|
|
|
|
|
this.$tip = $(this.options.template) |
|
|
|
|
|
|
|
if (this.$tip.length != 1) { |
|
|
|
|
|
|
|
throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return this.$tip |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.arrow = function () { |
|
|
|
Tooltip.prototype.arrow = function () { |
|
|
@ -1655,14 +1706,26 @@ if (typeof jQuery === 'undefined') { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (e) { |
|
|
|
|
|
|
|
self.inState.click = !self.inState.click |
|
|
|
|
|
|
|
if (self.isInStateTrue()) self.enter(self) |
|
|
|
|
|
|
|
else self.leave(self) |
|
|
|
|
|
|
|
} else { |
|
|
|
self.tip().hasClass('in') ? self.leave(self) : self.enter(self) |
|
|
|
self.tip().hasClass('in') ? self.leave(self) : self.enter(self) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tooltip.prototype.destroy = function () { |
|
|
|
Tooltip.prototype.destroy = function () { |
|
|
|
var that = this |
|
|
|
var that = this |
|
|
|
clearTimeout(this.timeout) |
|
|
|
clearTimeout(this.timeout) |
|
|
|
this.hide(function () { |
|
|
|
this.hide(function () { |
|
|
|
that.$element.off('.' + that.type).removeData('bs.' + that.type) |
|
|
|
that.$element.off('.' + that.type).removeData('bs.' + that.type) |
|
|
|
|
|
|
|
if (that.$tip) { |
|
|
|
|
|
|
|
that.$tip.detach() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
that.$tip = null |
|
|
|
|
|
|
|
that.$arrow = null |
|
|
|
|
|
|
|
that.$viewport = null |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -1676,7 +1739,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var data = $this.data('bs.tooltip') |
|
|
|
var data = $this.data('bs.tooltip') |
|
|
|
var options = typeof option == 'object' && option |
|
|
|
var options = typeof option == 'object' && option |
|
|
|
|
|
|
|
|
|
|
|
if (!data && option == 'destroy') return |
|
|
|
if (!data && /destroy|hide/.test(option)) return |
|
|
|
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) |
|
|
|
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) |
|
|
|
if (typeof option == 'string') data[option]() |
|
|
|
if (typeof option == 'string') data[option]() |
|
|
|
}) |
|
|
|
}) |
|
|
@ -1699,7 +1762,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: popover.js v3.3.2 |
|
|
|
* Bootstrap: popover.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#popovers
|
|
|
|
* http://getbootstrap.com/javascript/#popovers
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -1719,7 +1782,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
|
|
|
|
|
|
|
|
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') |
|
|
|
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') |
|
|
|
|
|
|
|
|
|
|
|
Popover.VERSION = '3.3.2' |
|
|
|
Popover.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { |
|
|
|
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { |
|
|
|
placement: 'right', |
|
|
|
placement: 'right', |
|
|
@ -1775,11 +1838,6 @@ if (typeof jQuery === 'undefined') { |
|
|
|
return (this.$arrow = this.$arrow || this.tip().find('.arrow')) |
|
|
|
return (this.$arrow = this.$arrow || this.tip().find('.arrow')) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Popover.prototype.tip = function () { |
|
|
|
|
|
|
|
if (!this.$tip) this.$tip = $(this.options.template) |
|
|
|
|
|
|
|
return this.$tip |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// POPOVER PLUGIN DEFINITION
|
|
|
|
// POPOVER PLUGIN DEFINITION
|
|
|
|
// =========================
|
|
|
|
// =========================
|
|
|
@ -1790,7 +1848,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var data = $this.data('bs.popover') |
|
|
|
var data = $this.data('bs.popover') |
|
|
|
var options = typeof option == 'object' && option |
|
|
|
var options = typeof option == 'object' && option |
|
|
|
|
|
|
|
|
|
|
|
if (!data && option == 'destroy') return |
|
|
|
if (!data && /destroy|hide/.test(option)) return |
|
|
|
if (!data) $this.data('bs.popover', (data = new Popover(this, options))) |
|
|
|
if (!data) $this.data('bs.popover', (data = new Popover(this, options))) |
|
|
|
if (typeof option == 'string') data[option]() |
|
|
|
if (typeof option == 'string') data[option]() |
|
|
|
}) |
|
|
|
}) |
|
|
@ -1813,7 +1871,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: scrollspy.js v3.3.2 |
|
|
|
* Bootstrap: scrollspy.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#scrollspy
|
|
|
|
* http://getbootstrap.com/javascript/#scrollspy
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -1828,10 +1886,8 @@ if (typeof jQuery === 'undefined') { |
|
|
|
// ==========================
|
|
|
|
// ==========================
|
|
|
|
|
|
|
|
|
|
|
|
function ScrollSpy(element, options) { |
|
|
|
function ScrollSpy(element, options) { |
|
|
|
var process = $.proxy(this.process, this) |
|
|
|
this.$body = $(document.body) |
|
|
|
|
|
|
|
this.$scrollElement = $(element).is(document.body) ? $(window) : $(element) |
|
|
|
this.$body = $('body') |
|
|
|
|
|
|
|
this.$scrollElement = $(element).is('body') ? $(window) : $(element) |
|
|
|
|
|
|
|
this.options = $.extend({}, ScrollSpy.DEFAULTS, options) |
|
|
|
this.options = $.extend({}, ScrollSpy.DEFAULTS, options) |
|
|
|
this.selector = (this.options.target || '') + ' .nav li > a' |
|
|
|
this.selector = (this.options.target || '') + ' .nav li > a' |
|
|
|
this.offsets = [] |
|
|
|
this.offsets = [] |
|
|
@ -1839,12 +1895,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
this.activeTarget = null |
|
|
|
this.activeTarget = null |
|
|
|
this.scrollHeight = 0 |
|
|
|
this.scrollHeight = 0 |
|
|
|
|
|
|
|
|
|
|
|
this.$scrollElement.on('scroll.bs.scrollspy', process) |
|
|
|
this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this)) |
|
|
|
this.refresh() |
|
|
|
this.refresh() |
|
|
|
this.process() |
|
|
|
this.process() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
ScrollSpy.VERSION = '3.3.2' |
|
|
|
ScrollSpy.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
ScrollSpy.DEFAULTS = { |
|
|
|
ScrollSpy.DEFAULTS = { |
|
|
|
offset: 10 |
|
|
|
offset: 10 |
|
|
@ -1855,19 +1911,18 @@ if (typeof jQuery === 'undefined') { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
ScrollSpy.prototype.refresh = function () { |
|
|
|
ScrollSpy.prototype.refresh = function () { |
|
|
|
|
|
|
|
var that = this |
|
|
|
var offsetMethod = 'offset' |
|
|
|
var offsetMethod = 'offset' |
|
|
|
var offsetBase = 0 |
|
|
|
var offsetBase = 0 |
|
|
|
|
|
|
|
|
|
|
|
if (!$.isWindow(this.$scrollElement[0])) { |
|
|
|
|
|
|
|
offsetMethod = 'position' |
|
|
|
|
|
|
|
offsetBase = this.$scrollElement.scrollTop() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.offsets = [] |
|
|
|
this.offsets = [] |
|
|
|
this.targets = [] |
|
|
|
this.targets = [] |
|
|
|
this.scrollHeight = this.getScrollHeight() |
|
|
|
this.scrollHeight = this.getScrollHeight() |
|
|
|
|
|
|
|
|
|
|
|
var self = this |
|
|
|
if (!$.isWindow(this.$scrollElement[0])) { |
|
|
|
|
|
|
|
offsetMethod = 'position' |
|
|
|
|
|
|
|
offsetBase = this.$scrollElement.scrollTop() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.$body |
|
|
|
this.$body |
|
|
|
.find(this.selector) |
|
|
|
.find(this.selector) |
|
|
@ -1883,8 +1938,8 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}) |
|
|
|
}) |
|
|
|
.sort(function (a, b) { return a[0] - b[0] }) |
|
|
|
.sort(function (a, b) { return a[0] - b[0] }) |
|
|
|
.each(function () { |
|
|
|
.each(function () { |
|
|
|
self.offsets.push(this[0]) |
|
|
|
that.offsets.push(this[0]) |
|
|
|
self.targets.push(this[1]) |
|
|
|
that.targets.push(this[1]) |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -1913,7 +1968,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
for (i = offsets.length; i--;) { |
|
|
|
for (i = offsets.length; i--;) { |
|
|
|
activeTarget != targets[i] |
|
|
|
activeTarget != targets[i] |
|
|
|
&& scrollTop >= offsets[i] |
|
|
|
&& scrollTop >= offsets[i] |
|
|
|
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1]) |
|
|
|
&& (offsets[i + 1] === undefined || scrollTop < offsets[i + 1]) |
|
|
|
&& this.activate(targets[i]) |
|
|
|
&& this.activate(targets[i]) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -1989,7 +2044,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: tab.js v3.3.2 |
|
|
|
* Bootstrap: tab.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#tabs
|
|
|
|
* http://getbootstrap.com/javascript/#tabs
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -2004,10 +2059,12 @@ if (typeof jQuery === 'undefined') { |
|
|
|
// ====================
|
|
|
|
// ====================
|
|
|
|
|
|
|
|
|
|
|
|
var Tab = function (element) { |
|
|
|
var Tab = function (element) { |
|
|
|
|
|
|
|
// jscs:disable requireDollarBeforejQueryAssignment
|
|
|
|
this.element = $(element) |
|
|
|
this.element = $(element) |
|
|
|
|
|
|
|
// jscs:enable requireDollarBeforejQueryAssignment
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Tab.VERSION = '3.3.2' |
|
|
|
Tab.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Tab.TRANSITION_DURATION = 150 |
|
|
|
Tab.TRANSITION_DURATION = 150 |
|
|
|
|
|
|
|
|
|
|
@ -2055,7 +2112,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var $active = container.find('> .active') |
|
|
|
var $active = container.find('> .active') |
|
|
|
var transition = callback |
|
|
|
var transition = callback |
|
|
|
&& $.support.transition |
|
|
|
&& $.support.transition |
|
|
|
&& (($active.length && $active.hasClass('fade')) || !!container.find('> .fade').length) |
|
|
|
&& ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length) |
|
|
|
|
|
|
|
|
|
|
|
function next() { |
|
|
|
function next() { |
|
|
|
$active |
|
|
|
$active |
|
|
@ -2078,7 +2135,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
element.removeClass('fade') |
|
|
|
element.removeClass('fade') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (element.parent('.dropdown-menu')) { |
|
|
|
if (element.parent('.dropdown-menu').length) { |
|
|
|
element |
|
|
|
element |
|
|
|
.closest('li.dropdown') |
|
|
|
.closest('li.dropdown') |
|
|
|
.addClass('active') |
|
|
|
.addClass('active') |
|
|
@ -2143,7 +2200,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
}(jQuery); |
|
|
|
}(jQuery); |
|
|
|
|
|
|
|
|
|
|
|
/* ======================================================================== |
|
|
|
/* ======================================================================== |
|
|
|
* Bootstrap: affix.js v3.3.2 |
|
|
|
* Bootstrap: affix.js v3.3.5 |
|
|
|
* http://getbootstrap.com/javascript/#affix
|
|
|
|
* http://getbootstrap.com/javascript/#affix
|
|
|
|
* ======================================================================== |
|
|
|
* ======================================================================== |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
|
* Copyright 2011-2015 Twitter, Inc. |
|
|
@ -2165,14 +2222,14 @@ if (typeof jQuery === 'undefined') { |
|
|
|
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) |
|
|
|
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) |
|
|
|
|
|
|
|
|
|
|
|
this.$element = $(element) |
|
|
|
this.$element = $(element) |
|
|
|
this.affixed = |
|
|
|
this.affixed = null |
|
|
|
this.unpin = |
|
|
|
this.unpin = null |
|
|
|
this.pinnedOffset = null |
|
|
|
this.pinnedOffset = null |
|
|
|
|
|
|
|
|
|
|
|
this.checkPosition() |
|
|
|
this.checkPosition() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Affix.VERSION = '3.3.2' |
|
|
|
Affix.VERSION = '3.3.5' |
|
|
|
|
|
|
|
|
|
|
|
Affix.RESET = 'affix affix-top affix-bottom' |
|
|
|
Affix.RESET = 'affix affix-top affix-bottom' |
|
|
|
|
|
|
|
|
|
|
@ -2222,7 +2279,7 @@ if (typeof jQuery === 'undefined') { |
|
|
|
var offset = this.options.offset |
|
|
|
var offset = this.options.offset |
|
|
|
var offsetTop = offset.top |
|
|
|
var offsetTop = offset.top |
|
|
|
var offsetBottom = offset.bottom |
|
|
|
var offsetBottom = offset.bottom |
|
|
|
var scrollHeight = $('body').height() |
|
|
|
var scrollHeight = Math.max($(document).height(), $(document.body).height()) |
|
|
|
|
|
|
|
|
|
|
|
if (typeof offset != 'object') offsetBottom = offsetTop = offset |
|
|
|
if (typeof offset != 'object') offsetBottom = offsetTop = offset |
|
|
|
if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) |
|
|
|
if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) |
|
|
|