mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-17 09:52:29 +01:00
grunt dist
This commit is contained in:
parent
4300d430e6
commit
8bee6549ad
6
dist/css/bootstrap.css
vendored
6
dist/css/bootstrap.css
vendored
@ -4612,10 +4612,12 @@ a.thumbnail.active {
|
|||||||
.alert > p + p {
|
.alert > p + p {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
.alert-dismissable {
|
.alert-dismissable,
|
||||||
|
.alert-dismissible {
|
||||||
padding-right: 35px;
|
padding-right: 35px;
|
||||||
}
|
}
|
||||||
.alert-dismissable .close {
|
.alert-dismissable .close,
|
||||||
|
.alert-dismissible .close {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -2px;
|
top: -2px;
|
||||||
right: -21px;
|
right: -21px;
|
||||||
|
2
dist/css/bootstrap.css.map
vendored
2
dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
219
dist/js/bootstrap.js
vendored
219
dist/js/bootstrap.js
vendored
@ -15,12 +15,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
||||||
// ============================================================
|
// ============================================================
|
||||||
@ -48,7 +48,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
$.fn.emulateTransitionEnd = function (duration) {
|
$.fn.emulateTransitionEnd = function (duration) {
|
||||||
var called = false
|
var called = false
|
||||||
var $el = this
|
var $el = this
|
||||||
$(this).one($.support.transition.end, function () { called = true })
|
$(this).one('bsTransitionEnd', function () { called = true })
|
||||||
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
||||||
setTimeout(callback, duration)
|
setTimeout(callback, duration)
|
||||||
return this
|
return this
|
||||||
@ -56,9 +56,21 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
$.support.transition = transitionEnd()
|
$.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)
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: alert.js v3.1.1
|
* Bootstrap: alert.js v3.1.1
|
||||||
@ -69,12 +81,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// ALERT CLASS DEFINITION
|
// ALERT CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -116,7 +128,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
$.support.transition && $parent.hasClass('fade') ?
|
$.support.transition && $parent.hasClass('fade') ?
|
||||||
$parent
|
$parent
|
||||||
.one($.support.transition.end, removeElement)
|
.one('bsTransitionEnd', removeElement)
|
||||||
.emulateTransitionEnd(150) :
|
.emulateTransitionEnd(150) :
|
||||||
removeElement()
|
removeElement()
|
||||||
}
|
}
|
||||||
@ -155,7 +167,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: button.js v3.1.1
|
* Bootstrap: button.js v3.1.1
|
||||||
@ -166,12 +180,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// BUTTON PUBLIC CLASS DEFINITION
|
// BUTTON PUBLIC CLASS DEFINITION
|
||||||
// ==============================
|
// ==============================
|
||||||
@ -270,7 +284,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: carousel.js v3.1.1
|
* Bootstrap: carousel.js v3.1.1
|
||||||
@ -281,12 +297,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// CAROUSEL CLASS DEFINITION
|
// CAROUSEL CLASS DEFINITION
|
||||||
// =========================
|
// =========================
|
||||||
@ -416,7 +432,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
$active.addClass(direction)
|
$active.addClass(direction)
|
||||||
$next.addClass(direction)
|
$next.addClass(direction)
|
||||||
$active
|
$active
|
||||||
.one($.support.transition.end, function () {
|
.one('bsTransitionEnd', function () {
|
||||||
$next.removeClass([type, direction].join(' ')).addClass('active')
|
$next.removeClass([type, direction].join(' ')).addClass('active')
|
||||||
$active.removeClass(['active', direction].join(' '))
|
$active.removeClass(['active', direction].join(' '))
|
||||||
that.sliding = false
|
that.sliding = false
|
||||||
@ -497,7 +513,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: collapse.js v3.1.1
|
* Bootstrap: collapse.js v3.1.1
|
||||||
@ -508,12 +526,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// COLLAPSE PUBLIC CLASS DEFINITION
|
// COLLAPSE PUBLIC CLASS DEFINITION
|
||||||
// ================================
|
// ================================
|
||||||
@ -562,18 +580,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
this.transitioning = 1
|
this.transitioning = 1
|
||||||
|
|
||||||
var complete = function (e) {
|
var complete = function () {
|
||||||
if (e && e.target != this.$element[0]) {
|
|
||||||
this.$element
|
|
||||||
.one($.support.transition.end, $.proxy(complete, this))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.$element
|
this.$element
|
||||||
.removeClass('collapsing')
|
.removeClass('collapsing')
|
||||||
.addClass('collapse in')[dimension]('')
|
.addClass('collapse in')[dimension]('')
|
||||||
this.transitioning = 0
|
this.transitioning = 0
|
||||||
this.$element
|
this.$element
|
||||||
.off($.support.transition.end + '.bs.collapse')
|
|
||||||
.trigger('shown.bs.collapse')
|
.trigger('shown.bs.collapse')
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -582,7 +594,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
||||||
|
|
||||||
this.$element
|
this.$element
|
||||||
.on($.support.transition.end + '.bs.collapse', $.proxy(complete, this))
|
.one('bsTransitionEnd', $.proxy(complete, this))
|
||||||
.emulateTransitionEnd(350)[dimension](this.$element[0][scrollSize])
|
.emulateTransitionEnd(350)[dimension](this.$element[0][scrollSize])
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -604,12 +616,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
this.transitioning = 1
|
this.transitioning = 1
|
||||||
|
|
||||||
var complete = function (e) {
|
var complete = function () {
|
||||||
if (e && e.target != this.$element[0]) {
|
|
||||||
this.$element
|
|
||||||
.one($.support.transition.end, $.proxy(complete, this))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.transitioning = 0
|
this.transitioning = 0
|
||||||
this.$element
|
this.$element
|
||||||
.trigger('hidden.bs.collapse')
|
.trigger('hidden.bs.collapse')
|
||||||
@ -621,7 +628,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
this.$element
|
this.$element
|
||||||
[dimension](0)
|
[dimension](0)
|
||||||
.one($.support.transition.end, $.proxy(complete, this))
|
.one('bsTransitionEnd', $.proxy(complete, this))
|
||||||
.emulateTransitionEnd(350)
|
.emulateTransitionEnd(350)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -683,7 +690,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
Plugin.call($target, option)
|
Plugin.call($target, option)
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: dropdown.js v3.1.1
|
* Bootstrap: dropdown.js v3.1.1
|
||||||
@ -694,12 +703,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// DROPDOWN CLASS DEFINITION
|
// DROPDOWN CLASS DEFINITION
|
||||||
// =========================
|
// =========================
|
||||||
@ -839,7 +848,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
.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 + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
|
.on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: modal.js v3.1.1
|
* Bootstrap: modal.js v3.1.1
|
||||||
@ -850,12 +861,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// MODAL CLASS DEFINITION
|
// MODAL CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -932,7 +943,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
transition ?
|
transition ?
|
||||||
that.$element.find('.modal-dialog') // wait for modal to slide in
|
that.$element.find('.modal-dialog') // wait for modal to slide in
|
||||||
.one($.support.transition.end, function () {
|
.one('bsTransitionEnd', function () {
|
||||||
that.$element.trigger('focus').trigger(e)
|
that.$element.trigger('focus').trigger(e)
|
||||||
})
|
})
|
||||||
.emulateTransitionEnd(300) :
|
.emulateTransitionEnd(300) :
|
||||||
@ -965,7 +976,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
$.support.transition && this.$element.hasClass('fade') ?
|
$.support.transition && this.$element.hasClass('fade') ?
|
||||||
this.$element
|
this.$element
|
||||||
.one($.support.transition.end, $.proxy(this.hideModal, this))
|
.one('bsTransitionEnd', $.proxy(this.hideModal, this))
|
||||||
.emulateTransitionEnd(300) :
|
.emulateTransitionEnd(300) :
|
||||||
this.hideModal()
|
this.hideModal()
|
||||||
}
|
}
|
||||||
@ -1028,7 +1039,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
doAnimate ?
|
doAnimate ?
|
||||||
this.$backdrop
|
this.$backdrop
|
||||||
.one($.support.transition.end, callback)
|
.one('bsTransitionEnd', callback)
|
||||||
.emulateTransitionEnd(150) :
|
.emulateTransitionEnd(150) :
|
||||||
callback()
|
callback()
|
||||||
|
|
||||||
@ -1041,7 +1052,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
}
|
}
|
||||||
$.support.transition && this.$element.hasClass('fade') ?
|
$.support.transition && this.$element.hasClass('fade') ?
|
||||||
this.$backdrop
|
this.$backdrop
|
||||||
.one($.support.transition.end, callbackRemove)
|
.one('bsTransitionEnd', callbackRemove)
|
||||||
.emulateTransitionEnd(150) :
|
.emulateTransitionEnd(150) :
|
||||||
callbackRemove()
|
callbackRemove()
|
||||||
|
|
||||||
@ -1124,7 +1135,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
Plugin.call($target, option, this)
|
Plugin.call($target, option, this)
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tooltip.js v3.1.1
|
* Bootstrap: tooltip.js v3.1.1
|
||||||
@ -1136,12 +1149,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// TOOLTIP PUBLIC CLASS DEFINITION
|
// TOOLTIP PUBLIC CLASS DEFINITION
|
||||||
// ===============================
|
// ===============================
|
||||||
@ -1330,15 +1343,15 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
|
var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
|
||||||
|
|
||||||
this.applyPlacement(calculatedOffset, placement)
|
this.applyPlacement(calculatedOffset, placement)
|
||||||
this.hoverState = null
|
|
||||||
|
|
||||||
var complete = function () {
|
var complete = function () {
|
||||||
that.$element.trigger('shown.bs.' + that.type)
|
that.$element.trigger('shown.bs.' + that.type)
|
||||||
|
that.hoverState = null
|
||||||
}
|
}
|
||||||
|
|
||||||
$.support.transition && this.$tip.hasClass('fade') ?
|
$.support.transition && this.$tip.hasClass('fade') ?
|
||||||
$tip
|
$tip
|
||||||
.one($.support.transition.end, complete)
|
.one('bsTransitionEnd', complete)
|
||||||
.emulateTransitionEnd(150) :
|
.emulateTransitionEnd(150) :
|
||||||
complete()
|
complete()
|
||||||
}
|
}
|
||||||
@ -1426,7 +1439,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
$.support.transition && this.$tip.hasClass('fade') ?
|
$.support.transition && this.$tip.hasClass('fade') ?
|
||||||
$tip
|
$tip
|
||||||
.one($.support.transition.end, complete)
|
.one('bsTransitionEnd', complete)
|
||||||
.emulateTransitionEnd(150) :
|
.emulateTransitionEnd(150) :
|
||||||
complete()
|
complete()
|
||||||
|
|
||||||
@ -1586,7 +1599,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: popover.js v3.1.1
|
* Bootstrap: popover.js v3.1.1
|
||||||
@ -1597,12 +1612,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// POPOVER PUBLIC CLASS DEFINITION
|
// POPOVER PUBLIC CLASS DEFINITION
|
||||||
// ===============================
|
// ===============================
|
||||||
@ -1704,7 +1719,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: scrollspy.js v3.1.1
|
* Bootstrap: scrollspy.js v3.1.1
|
||||||
@ -1715,12 +1732,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// SCROLLSPY CLASS DEFINITION
|
// SCROLLSPY CLASS DEFINITION
|
||||||
// ==========================
|
// ==========================
|
||||||
@ -1879,7 +1896,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: tab.js v3.1.1
|
* Bootstrap: tab.js v3.1.1
|
||||||
@ -1890,12 +1909,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// TAB CLASS DEFINITION
|
// TAB CLASS DEFINITION
|
||||||
// ====================
|
// ====================
|
||||||
@ -1968,7 +1987,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
|
|
||||||
transition ?
|
transition ?
|
||||||
$active
|
$active
|
||||||
.one($.support.transition.end, next)
|
.one('bsTransitionEnd', next)
|
||||||
.emulateTransitionEnd(150) :
|
.emulateTransitionEnd(150) :
|
||||||
next()
|
next()
|
||||||
|
|
||||||
@ -2012,7 +2031,9 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
Plugin.call($(this), 'show')
|
Plugin.call($(this), 'show')
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
|
||||||
/* ========================================================================
|
/* ========================================================================
|
||||||
* Bootstrap: affix.js v3.1.1
|
* Bootstrap: affix.js v3.1.1
|
||||||
@ -2023,12 +2044,12 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
* ======================================================================== */
|
* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
(function (o_o) {
|
+function () { 'use strict';
|
||||||
typeof define === 'function' && define.amd ? define(['jquery'], o_o) :
|
|
||||||
typeof exports === 'object' ? o_o(require('jquery')) : o_o(this.jQuery)
|
|
||||||
})(function ($) {
|
|
||||||
|
|
||||||
'use strict';
|
(function (o_o) {
|
||||||
|
typeof define == 'function' && define.amd ? define(['jquery'], o_o) :
|
||||||
|
typeof exports == 'object' ? o_o(require('jquery')) : o_o(jQuery)
|
||||||
|
})(function ($) {
|
||||||
|
|
||||||
// AFFIX CLASS DEFINITION
|
// AFFIX CLASS DEFINITION
|
||||||
// ======================
|
// ======================
|
||||||
@ -2159,4 +2180,6 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
}();
|
||||||
|
4
dist/js/bootstrap.min.js
vendored
4
dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.css.map
vendored
2
docs/dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
docs/dist/css/bootstrap.min.css
vendored
2
docs/dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
4
docs/dist/js/bootstrap.min.js
vendored
4
docs/dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user