diff options
| author | GeoSot <[email protected]> | 2021-04-14 23:28:50 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-14 13:28:50 -0700 |
| commit | 80085a12f6936bef11aa72631392e3e9b2646f17 (patch) | |
| tree | 204f124a4c55bed0c9aeae9cc63a8dde33095ede /build | |
| parent | 0122e020d60f9556dd9961256633aa06e8ded643 (diff) | |
| download | bootstrap-80085a12f6936bef11aa72631392e3e9b2646f17.tar.xz bootstrap-80085a12f6936bef11aa72631392e3e9b2646f17.zip | |
Decouple BackDrop from modal (#32439)
* Create backdrop.js util
* revert breaking changes
remove PromiseTimout usage
revert class name
* one more test | change bundlewatch.config
* add config obj to backdrop helper | tests for rootElement | use transitionend helper
* Minor tweaks — Renaming
Co-authored-by: Rohit Sharma <[email protected]>
Diffstat (limited to 'build')
| -rw-r--r-- | build/build-plugins.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/build-plugins.js b/build/build-plugins.js index 7fd58bcb6..53093dc41 100644 --- a/build/build-plugins.js +++ b/build/build-plugins.js @@ -65,7 +65,8 @@ const getConfigByPluginKey = pluginKey => { pluginKey === 'EventHandler' || pluginKey === 'SelectorEngine' || pluginKey === 'Util' || - pluginKey === 'Sanitizer' + pluginKey === 'Sanitizer' || + pluginKey === 'Backdrop' ) { return { external: [] @@ -133,7 +134,8 @@ const getConfigByPluginKey = pluginKey => { const utilObjects = new Set([ 'Util', - 'Sanitizer' + 'Sanitizer', + 'Backdrop' ]) const domObjects = new Set([ |
