mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Remove constraints option and check every options
This commit is contained in:
parent
54a8ab4011
commit
c21a2b0d92
@ -63,17 +63,13 @@ const Dropdown = (($) => {
|
||||
}
|
||||
|
||||
const Default = {
|
||||
animation : true,
|
||||
trigger : 'click',
|
||||
placement : 'bottom',
|
||||
offset : '0 0'
|
||||
offset : {}
|
||||
}
|
||||
|
||||
const DefaultType = {
|
||||
animation : 'boolean',
|
||||
trigger : 'string',
|
||||
placement : 'string',
|
||||
offset : 'string'
|
||||
offset : 'number'
|
||||
}
|
||||
|
||||
|
||||
@ -145,8 +141,10 @@ const Dropdown = (($) => {
|
||||
|
||||
this._popper = new Popper(this, context._menu, {
|
||||
placement : context._config.placement,
|
||||
offsets : {
|
||||
popper : context._config.offset
|
||||
modifiers : {
|
||||
offset : {
|
||||
offset : this.config.offset
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -47,8 +47,7 @@ const Tooltip = (($) => {
|
||||
html : false,
|
||||
selector : false,
|
||||
placement : 'top',
|
||||
offset : '0 0',
|
||||
constraints : [],
|
||||
offset : {},
|
||||
container : false
|
||||
}
|
||||
|
||||
@ -61,8 +60,7 @@ const Tooltip = (($) => {
|
||||
html : 'boolean',
|
||||
selector : '(string|boolean)',
|
||||
placement : '(string|function)',
|
||||
offset : 'string',
|
||||
constraints : 'array',
|
||||
offset : 'number',
|
||||
container : '(string|element|boolean)'
|
||||
}
|
||||
|
||||
@ -285,8 +283,10 @@ const Tooltip = (($) => {
|
||||
|
||||
this._popper = new Popper(this.element, tip, {
|
||||
placement : attachment,
|
||||
offsets : {
|
||||
popper : this.config.offset
|
||||
modifiers : {
|
||||
offset : {
|
||||
offset : this.config.offset
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user