mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-12 08:34:08 +02:00
automatic grunt dist
This commit is contained in:
2
dist/css/bootstrap-theme.min.css
vendored
2
dist/css/bootstrap-theme.min.css
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
28
dist/js/bootstrap.js
vendored
28
dist/js/bootstrap.js
vendored
@@ -1671,18 +1671,12 @@ if (typeof jQuery === 'undefined') {
|
|||||||
|
|
||||||
function Plugin(option) {
|
function Plugin(option) {
|
||||||
return this.each(function () {
|
return this.each(function () {
|
||||||
var $this = $(this)
|
var $this = $(this)
|
||||||
var data = $this.data('bs.tooltip')
|
var data = $this.data('bs.tooltip')
|
||||||
var options = typeof option == 'object' && option
|
var options = typeof option == 'object' && option
|
||||||
var selector = options && options.selector
|
|
||||||
|
|
||||||
if (!data && option == 'destroy') return
|
if (!data && option == 'destroy') return
|
||||||
if (selector) {
|
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
|
||||||
if (!data) $this.data('bs.tooltip', (data = {}))
|
|
||||||
if (!data[selector]) data[selector] = new Tooltip(this, options)
|
|
||||||
} else {
|
|
||||||
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
|
|
||||||
}
|
|
||||||
if (typeof option == 'string') data[option]()
|
if (typeof option == 'string') data[option]()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -1791,18 +1785,12 @@ if (typeof jQuery === 'undefined') {
|
|||||||
|
|
||||||
function Plugin(option) {
|
function Plugin(option) {
|
||||||
return this.each(function () {
|
return this.each(function () {
|
||||||
var $this = $(this)
|
var $this = $(this)
|
||||||
var data = $this.data('bs.popover')
|
var data = $this.data('bs.popover')
|
||||||
var options = typeof option == 'object' && option
|
var options = typeof option == 'object' && option
|
||||||
var selector = options && options.selector
|
|
||||||
|
|
||||||
if (!data && option == 'destroy') return
|
if (!data && option == 'destroy') return
|
||||||
if (selector) {
|
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
||||||
if (!data) $this.data('bs.popover', (data = {}))
|
|
||||||
if (!data[selector]) data[selector] = new Popover(this, options)
|
|
||||||
} else {
|
|
||||||
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
|
||||||
}
|
|
||||||
if (typeof option == 'string') data[option]()
|
if (typeof option == 'string') data[option]()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
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
Reference in New Issue
Block a user