diff options
| author | XhmikosR <[email protected]> | 2023-03-29 20:49:30 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-29 13:49:30 -0400 |
| commit | ae43f0c48bf7acede8a325b24197001fe2b2f416 (patch) | |
| tree | 780ea3b362bff6b88eaed4f4387217264c3b3189 /js/src/dom | |
| parent | 3aabfc70c38db03e77229a49f4f8c7ed58169cf7 (diff) | |
| download | bootstrap-ae43f0c48bf7acede8a325b24197001fe2b2f416.tar.xz bootstrap-ae43f0c48bf7acede8a325b24197001fe2b2f416.zip | |
Tweak and re-organize ESLint config (#38369)
* Tweak and re-organize ESLint config
* merge individual configs to the root config
* enable more eslint-plugin-import rules
* lint markdown files
* Lint
Diffstat (limited to 'js/src/dom')
| -rw-r--r-- | js/src/dom/event-handler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/dom/event-handler.js b/js/src/dom/event-handler.js index 97cf3041e..561d8751d 100644 --- a/js/src/dom/event-handler.js +++ b/js/src/dom/event-handler.js @@ -128,7 +128,7 @@ function findHandler(events, callable, delegationSelector = null) { function normalizeParameters(originalTypeEvent, handler, delegationFunction) { const isDelegated = typeof handler === 'string' - // todo: tooltip passes `false` instead of selector, so we need to check + // TODO: tooltip passes `false` instead of selector, so we need to check const callable = isDelegated ? delegationFunction : (handler || delegationFunction) let typeEvent = getTypeEvent(originalTypeEvent) |
