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/dom | |
| 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/dom')
| -rw-r--r-- | js/src/dom/event-handler.js | 2 | ||||
| -rw-r--r-- | js/src/dom/selector-engine.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/js/src/dom/event-handler.js b/js/src/dom/event-handler.js index c7019a8d0..c9408d353 100644 --- a/js/src/dom/event-handler.js +++ b/js/src/dom/event-handler.js @@ -5,7 +5,7 @@ * -------------------------------------------------------------------------- */ -import { getjQuery } from '../util/index' +import { getjQuery } from '../util/index.js' /** * Constants diff --git a/js/src/dom/selector-engine.js b/js/src/dom/selector-engine.js index 28f23ff8f..63bc2d176 100644 --- a/js/src/dom/selector-engine.js +++ b/js/src/dom/selector-engine.js @@ -5,7 +5,7 @@ * -------------------------------------------------------------------------- */ -import { isDisabled, isVisible } from '../util/index' +import { isDisabled, isVisible } from '../util/index.js' /** * Constants |
