diff options
| author | GeoSot <[email protected]> | 2022-10-26 08:26:51 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-26 08:26:51 +0300 |
| commit | aa9d32dd153ed16943ad8be5e8795afaad24d0cf (patch) | |
| tree | b2d9432467aa8573a20fe8b5add3eccb173b3262 /js/src/util/component-functions.js | |
| parent | 7166e95388be3797233e88f89a80c3b666c42851 (diff) | |
| download | bootstrap-aa9d32dd153ed16943ad8be5e8795afaad24d0cf.tar.xz bootstrap-aa9d32dd153ed16943ad8be5e8795afaad24d0cf.zip | |
Use explicit imports in our javascript source files (#36854)
Diffstat (limited to 'js/src/util/component-functions.js')
| -rw-r--r-- | js/src/util/component-functions.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/util/component-functions.js b/js/src/util/component-functions.js index 798366b07..2298ac371 100644 --- a/js/src/util/component-functions.js +++ b/js/src/util/component-functions.js @@ -5,8 +5,8 @@ * -------------------------------------------------------------------------- */ -import EventHandler from '../dom/event-handler' -import { getElementFromSelector, isDisabled } from './index' +import EventHandler from '../dom/event-handler.js' +import { getElementFromSelector, isDisabled } from './index.js' const enableDismissTrigger = (component, method = 'hide') => { const clickEvent = `click.dismiss${component.EVENT_KEY}` |
