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/dropdown.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/dropdown.js')
| -rw-r--r-- | js/src/dropdown.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/js/src/dropdown.js b/js/src/dropdown.js index d37886d89..6f9adcbe6 100644 --- a/js/src/dropdown.js +++ b/js/src/dropdown.js @@ -16,11 +16,11 @@ import { isRTL, isVisible, noop -} from './util/index' -import EventHandler from './dom/event-handler' -import Manipulator from './dom/manipulator' -import SelectorEngine from './dom/selector-engine' -import BaseComponent from './base-component' +} from './util/index.js' +import EventHandler from './dom/event-handler.js' +import Manipulator from './dom/manipulator.js' +import SelectorEngine from './dom/selector-engine.js' +import BaseComponent from './base-component.js' /** * Constants |
