Skip to content
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

keypress for left or right should not trigger when in input boxes #216

Closed
shelane opened this issue Dec 20, 2018 · 1 comment
Closed

keypress for left or right should not trigger when in input boxes #216

shelane opened this issue Dec 20, 2018 · 1 comment
Labels

Comments

@shelane
Copy link
Contributor

shelane commented Dec 20, 2018

If you are in an input box, such as the search bar, and you click the left arrow, you are redirected to the previous page. This functionality comes from lines 226-239 of the learn.js file:

 jQuery(document).keydown(function(e) {
      // prev links - left arrow key
      if(e.which == '37') {
        jQuery('.nav.nav-prev').click();
        alert('handler for left arrow triggered in learn');
      }

      // next links - right arrow key
      if(e.which == '39') {
        jQuery('.nav.nav-next').click();
          alert('handler for right arrow triggered in learn');
      }
    });

This functionality should be disabled for input boxes because a user would expect a left or right arrow key to only move the typing cursor.

jQuery('input').keydown(function (e) {
         //  left and right arrow keys
         if (e.which == '37' || e.which == '39') {
             e.stopPropagation();
         }
     });
@matalo33
Copy link
Contributor

Nice catch. Would you be able to submit this in a pull request?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants