aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2021-11-18 21:47:27 +0200
committerXhmikosR <[email protected]>2022-02-01 12:43:19 +0200
commitcf7fec8a2e1cff03378c0802ff5cbe5ebdc5645a (patch)
tree6262f80a9fc324dbe6c01c58df74d5694538db2d
parenta1e924c4da03fd05a1c50d7b278350c3cfcfe5c4 (diff)
downloadbootstrap-cf7fec8a2e1cff03378c0802ff5cbe5ebdc5645a.tar.xz
bootstrap-cf7fec8a2e1cff03378c0802ff5cbe5ebdc5645a.zip
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 70d2f1708..a31ed333c 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
}
}