Skip to content

Commit

Permalink
Autocomplete: Ignore command (left and right/menu/windows), insert, c…
Browse files Browse the repository at this point in the history
…aps lock, home, end keys.

Fixes #5415 - Catch all common keys while typing a word.
  • Loading branch information
scottgonzalez committed Apr 23, 2010
1 parent 3570c1f commit cb7eb69
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ui/jquery.ui.autocomplete.js
Expand Up @@ -51,6 +51,7 @@ $.widget( "ui.autocomplete", {
event.preventDefault(); event.preventDefault();
break; break;
case keyCode.ENTER: case keyCode.ENTER:
case keyCode.NUMPAD_ENTER:
// when menu is open or has focus // when menu is open or has focus
if ( self.menu.active ) { if ( self.menu.active ) {
event.preventDefault(); event.preventDefault();
Expand All @@ -71,6 +72,12 @@ $.widget( "ui.autocomplete", {
case keyCode.SHIFT: case keyCode.SHIFT:
case keyCode.CONTROL: case keyCode.CONTROL:
case keyCode.ALT: case keyCode.ALT:
case keyCode.COMMAND:
case keyCode.COMMAND_RIGHT:
case keyCode.INSERT:
case keyCode.CAPS_LOCK:
case keyCode.END:
case keyCode.HOME:
// ignore metakeys (shift, ctrl, alt) // ignore metakeys (shift, ctrl, alt)
break; break;
default: default:
Expand Down

0 comments on commit cb7eb69

Please sign in to comment.