diff options
| author | vsn4ik <[email protected]> | 2015-01-08 12:03:09 +0300 |
|---|---|---|
| committer | Heinrich Fenkart <[email protected]> | 2015-02-26 06:42:09 +0100 |
| commit | b395f3526e267c267c2d099b7cfc13325d873ee9 (patch) | |
| tree | 30164d0185fe1aa06b16280dc37b6a748c93b34f /js/dropdown.js | |
| parent | 5debbec59f3d6c4d5c4feef9c53c0108b7b69208 (diff) | |
| download | bootstrap-b395f3526e267c267c2d099b7cfc13325d873ee9.tar.xz bootstrap-b395f3526e267c267c2d099b7cfc13325d873ee9.zip | |
Dropdowns: Skip `.disabled` instead of `.divider` on keydown event
Fixes #15147.
Closes #15520 by merging it.
Diffstat (limited to 'js/dropdown.js')
| -rw-r--r-- | js/dropdown.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/dropdown.js b/js/dropdown.js index 200e1c67b..0ba3f87f5 100644 --- a/js/dropdown.js +++ b/js/dropdown.js @@ -72,7 +72,7 @@ return $this.trigger('click') } - var desc = ' li:not(.divider):visible a' + var desc = ' li:not(.disabled):visible a' var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc) if (!$items.length) return |
