-
Notifications
You must be signed in to change notification settings - Fork 212
fix keyboard nav on releases pages #328
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
fix keyboard nav on releases pages #328
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
@@ -62,15 +62,15 @@ | |||
if (ev.ctrlKey || ev.altKey || ev.metaKey || document.activeElement.tagName === "INPUT") { | |||
return; | |||
} | |||
if (ev.which === 38) { // Down arrow | |||
if (ev.which === 40) { // Down arrow | |||
if (active === null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add ev.preventDefault()
.
if (active === null) { | ||
active = document.getElementsByClassName("recent-releases-container")[0].getElementsByTagName("li")[0]; | ||
} else if (active.nextElementSibling) { | ||
active.classList.remove("selected"); | ||
active = active.nextElementSibling; | ||
} | ||
active.classList.add("selected"); | ||
} else if (ev.which === 40) { // Up arrow | ||
} else if (ev.which === 38) { // Up arrow | ||
if (active === null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to add ev.preventDefault()
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good now!
Tested on dev server and it works, merging and deploying. |
After deploying #324 and testing it out, it looks like @GuillaumeGomez got the arrow keys backwards. This switches them around and makes it work properly.