Skip to content

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

Merged
merged 3 commits into from
Apr 11, 2019

Conversation

QuietMisdreavus
Copy link
Member

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.

Copy link
Member

@GuillaumeGomez GuillaumeGomez left a 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) {
Copy link
Member

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) {
Copy link
Member

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().

Copy link
Member

@GuillaumeGomez GuillaumeGomez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good now!

@QuietMisdreavus
Copy link
Member Author

Tested on dev server and it works, merging and deploying.

@QuietMisdreavus QuietMisdreavus merged commit 677850f into rust-lang:master Apr 11, 2019
@QuietMisdreavus QuietMisdreavus deleted the fix-search-nav branch April 11, 2019 20:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants