diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-05-06 15:04:14 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-05-06 15:04:14 -0400 |
commit | ce8f4da4e76a8331e50f442ac2165a32795bab80 (patch) | |
tree | 1b90bd2a6556eff9e5a8f99fe3efadde074cbf64 | |
parent | ddf03b39f396756a9cbb18f6c98e16627844f468 (diff) | |
download | jquery-ui-ce8f4da4e76a8331e50f442ac2165a32795bab80.tar.gz jquery-ui-ce8f4da4e76a8331e50f442ac2165a32795bab80.zip |
Autocomplete: Remove handling for NUMPAD_ENTER.
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 2f303ca6e..6a3e8661d 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -103,7 +103,6 @@ $.widget( "ui.autocomplete", { this._keyEvent( "next", event ); break; case keyCode.ENTER: - case keyCode.NUMPAD_ENTER: // when menu is open and has focus if ( this.menu.active ) { // #6055 - Opera still allows the keypress to occur |