Skip to content

Commit

Permalink
Fixed navigation of the results list with the down arrow key
Browse files Browse the repository at this point in the history
  • Loading branch information
rfletcher committed Mar 20, 2009
1 parent ac04756 commit bc85016
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib/Tagbox.Autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ Tagbox.Autocomplete = Class.create( {
}

switch( e.which ? e.which : e.keyCode ) {
case Event.KEY_DOWN:
this.next();
break;
case Event.KEY_UP:
this.previous();
break;
Expand Down

0 comments on commit bc85016

Please sign in to comment.