diff options
author | Richard Worth <rdworth@gmail.com> | 2011-03-15 05:48:31 -0400 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2011-03-15 05:48:31 -0400 |
commit | 2f5eadeb8feb802bf3cbb24e329e3c4da3015322 (patch) | |
tree | 3aa8c32a205a8980a063af3ab05ebf3d15db9087 /ui | |
parent | 09215ef2cda488cafa92c42a8c63e2f1131147d0 (diff) | |
download | jquery-ui-2f5eadeb8feb802bf3cbb24e329e3c4da3015322.tar.gz jquery-ui-2f5eadeb8feb802bf3cbb24e329e3c4da3015322.zip |
Autocomplete: changed autoFocus default to true for 1.9. Fixed #7042 - Autocomplete: Default autoFocus to true
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index e6acd4b63..a9e4b4119 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -22,7 +22,7 @@ $.widget( "ui.autocomplete", { defaultElement: "<input>", options: { appendTo: "body", - autoFocus: false, + autoFocus: true, delay: 300, minLength: 1, position: { |