aboutsummaryrefslogtreecommitdiff
path: root/js/src
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2016-06-05 11:17:05 -0700
committerChris Rebert <[email protected]>2016-06-05 11:17:05 -0700
commitc955868982e6a6647fa3b722bf42f73f6d513f79 (patch)
tree0dc648c07a630c9f7fdbca0b3fc4a9fc224783cb /js/src
parent36f2261b6ffff5d4803317fc4fd231769f625295 (diff)
downloadbootstrap-c955868982e6a6647fa3b722bf42f73f6d513f79.tar.xz
bootstrap-c955868982e6a6647fa3b722bf42f73f6d513f79.zip
Enable more rules from ESLint 2.0; refs #19999 (#20076)
[skip sauce] [skip validator]
Diffstat (limited to 'js/src')
-rw-r--r--js/src/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/util.js b/js/src/util.js
index b779c448f..86d9fe1f4 100644
--- a/js/src/util.js
+++ b/js/src/util.js
@@ -40,7 +40,7 @@ const Util = (($) => {
delegateType: transition.end,
handle(event) {
if ($(event.target).is(this)) {
- return event.handleObj.handler.apply(this, arguments)
+ return event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params
}
return undefined
}