-
-
Notifications
You must be signed in to change notification settings - Fork 79.2k
Automatically select an item in the dropdown when using arrow keys #34052
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -264,9 +264,9 @@ const execute = callback => { | |
const getNextActiveElement = (list, activeElement, shouldGetNext, isCycleAllowed) => { | ||
let index = list.indexOf(activeElement) | ||
|
||
// if the element does not exist in the list initialize it as the first element | ||
// if the element does not exist in the list return an element depending on the direction and if cycle is allowed | ||
if (index === -1) { | ||
return list[0] | ||
return list[!shouldGetNext && isCycleAllowed ? list.length - 1 : 0] | ||
Comment on lines
+267
to
+269
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Talked with @GeoSot about adding the feature of getting the last item from But I'd appreciate to receive some other opinion. |
||
} | ||
|
||
const listLength = list.length | ||
|
Uh oh!
There was an error while loading. Please reload this page.