Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRohit Sharma <rohit2sharma95@gmail.com>2021-03-02 18:27:13 +0300
committerGitHub <noreply@github.com>2021-03-02 18:27:13 +0300
commitb9e51dc3c4400ede5e72991dd0efacf9dbcb694e (patch)
tree361ae7b291e0d47add71ba0a78130887bd29d005 /js/src/dropdown.js
parent977c366cbee0735fdbad3e970f352b83b4f5edb1 (diff)
Dropdown — Drop `flip` option (#33198)
Diffstat (limited to 'js/src/dropdown.js')
-rw-r--r--js/src/dropdown.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/js/src/dropdown.js b/js/src/dropdown.js
index fea0b1919b..eeec9076d5 100644
--- a/js/src/dropdown.js
+++ b/js/src/dropdown.js
@@ -73,7 +73,6 @@ const PLACEMENT_LEFT = isRTL() ? 'right-start' : 'left-start'
const Default = {
offset: [0, 2],
- flip: true,
boundary: 'clippingParents',
reference: 'toggle',
display: 'dynamic',
@@ -82,7 +81,6 @@ const Default = {
const DefaultType = {
offset: '(array|string|function)',
- flip: 'boolean',
boundary: '(string|element)',
reference: '(string|element|object)',
display: 'string',
@@ -328,7 +326,6 @@ class Dropdown extends BaseComponent {
modifiers: [{
name: 'preventOverflow',
options: {
- altBoundary: this._config.flip,
boundary: this._config.boundary
}
},