diff options
| author | Mark Otto <[email protected]> | 2016-11-26 01:04:02 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-11-26 01:04:02 -0800 |
| commit | b110070dcd5b957c1674bd08238e96faa9c2691e (patch) | |
| tree | cee46694ca8b14479c25b9e366cb854e0e1ac0d0 /js/src | |
| parent | 19ab4873ff0d670b909025faf438f92a9e5f3e4e (diff) | |
| download | bootstrap-b110070dcd5b957c1674bd08238e96faa9c2691e.tar.xz bootstrap-b110070dcd5b957c1674bd08238e96faa9c2691e.zip | |
Follow up fix to #19953 for linting error in builds
See https://travis-ci.org/twbs/bootstrap/jobs/179010884 for build failure
Diffstat (limited to 'js/src')
| -rw-r--r-- | js/src/dropdown.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/dropdown.js b/js/src/dropdown.js index 324eef793..8b2164aa9 100644 --- a/js/src/dropdown.js +++ b/js/src/dropdown.js @@ -239,7 +239,7 @@ const Dropdown = (($) => { return } - let items = $(parent).find(Selector.VISIBLE_ITEMS).get() + const items = $(parent).find(Selector.VISIBLE_ITEMS).get() if (!items.length) { return |
