Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-11-18 22:47:27 +0300
committerXhmikosR <xhmikosr@gmail.com>2022-02-01 13:43:19 +0300
commitcf7fec8a2e1cff03378c0802ff5cbe5ebdc5645a (patch)
tree6262f80a9fc324dbe6c01c58df74d5694538db2d
parenta1e924c4da03fd05a1c50d7b278350c3cfcfe5c4 (diff)
event-handler.js: remove unneeded return statement
-rw-r--r--js/src/dom/event-handler.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/js/src/dom/event-handler.js b/js/src/dom/event-handler.js
index 70d2f1708f..a31ed333c9 100644
--- a/js/src/dom/event-handler.js
+++ b/js/src/dom/event-handler.js
@@ -118,9 +118,6 @@ function bootstrapDelegationHandler(element, selector, fn) {
return fn.apply(target, [event])
}
}
-
- // To please ESLint
- return null
}
}