diff options
| author | XhmikosR <[email protected]> | 2019-03-13 14:55:53 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-03-13 14:55:53 +0200 |
| commit | 6aa475c82e69a02882e87da7067e522806d6579c (patch) | |
| tree | 5f0068ae92d93f771458ccdaa5fece0b2674e6e9 /js/src/dom | |
| parent | ff1788666ffe935fa066eca6f5a6b9f4384c9b36 (diff) | |
| download | bootstrap-6aa475c82e69a02882e87da7067e522806d6579c.tar.xz bootstrap-6aa475c82e69a02882e87da7067e522806d6579c.zip | |
Use one-line imports when possible. (#28467)
Diffstat (limited to 'js/src/dom')
| -rw-r--r-- | js/src/dom/eventHandler.js | 4 | ||||
| -rw-r--r-- | js/src/dom/polyfill.js | 4 | ||||
| -rw-r--r-- | js/src/dom/selectorEngine.js | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/js/src/dom/eventHandler.js b/js/src/dom/eventHandler.js index f770577b3..177465053 100644 --- a/js/src/dom/eventHandler.js +++ b/js/src/dom/eventHandler.js @@ -5,9 +5,7 @@ * -------------------------------------------------------------------------- */ -import { - jQuery as $ -} from '../util/index' +import { jQuery as $ } from '../util/index' import Polyfill from './polyfill' /** diff --git a/js/src/dom/polyfill.js b/js/src/dom/polyfill.js index eaf07552e..f6cd23bdb 100644 --- a/js/src/dom/polyfill.js +++ b/js/src/dom/polyfill.js @@ -5,9 +5,7 @@ * -------------------------------------------------------------------------- */ -import { - getUID -} from '../util/index' +import { getUID } from '../util/index' /* istanbul ignore next */ const Polyfill = (() => { diff --git a/js/src/dom/selectorEngine.js b/js/src/dom/selectorEngine.js index f674319d1..a54b18e58 100644 --- a/js/src/dom/selectorEngine.js +++ b/js/src/dom/selectorEngine.js @@ -6,9 +6,7 @@ */ import Polyfill from './polyfill' -import { - makeArray -} from '../util/index' +import { makeArray } from '../util/index' /** * ------------------------------------------------------------------------ |
