aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.autocomplete.js
diff options
context:
space:
mode:
authorFelix Nagel <info@felixnagel.com>2013-11-26 00:18:25 +0100
committerFelix Nagel <info@felixnagel.com>2013-11-26 00:18:25 +0100
commit5bc7fc2b1a248063b4d52086dfc32fae8601680e (patch)
tree82c176a82f64ca3c1a26648b9e3bf0d2f7282dd8 /ui/jquery.ui.autocomplete.js
parentc20f1f8457802f90f8f06bcd2a33c340c2226b7c (diff)
parent9a5f20bc7d5218f864fb65d5d20775596065280d (diff)
downloadjquery-ui-5bc7fc2b1a248063b4d52086dfc32fae8601680e.tar.gz
jquery-ui-5bc7fc2b1a248063b4d52086dfc32fae8601680e.zip
Merge branch 'selectmenu' of github.com:jquery/jquery-ui into selectmenu
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r--ui/jquery.ui.autocomplete.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js
index 2b803b62f..aa6164c5c 100644
--- a/ui/jquery.ui.autocomplete.js
+++ b/ui/jquery.ui.autocomplete.js
@@ -86,7 +86,7 @@ $.widget( "ui.autocomplete", {
suppressInput = false;
suppressKeyPressRepeat = false;
var keyCode = $.ui.keyCode;
- switch( event.keyCode ) {
+ switch ( event.keyCode ) {
case keyCode.PAGE_UP:
suppressKeyPress = true;
this._move( "previousPage", event );
@@ -149,7 +149,7 @@ $.widget( "ui.autocomplete", {
// replicate some key handlers to allow them to repeat in Firefox and Opera
var keyCode = $.ui.keyCode;
- switch( event.keyCode ) {
+ switch ( event.keyCode ) {
case keyCode.PAGE_UP:
this._move( "previousPage", event );
break;
@@ -570,7 +570,6 @@ $.extend( $.ui.autocomplete, {
}
});
-
// live region extension, adding a `messages` option
// NOTE: This is an experimental API. We are still investigating
// a full solution for string manipulation and internationalization.