diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-04-25 08:10:39 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-04-25 08:11:52 -0400 |
commit | c4c36e557ef2b3450bc365708064f7314bc6fdc4 (patch) | |
tree | 118b1f85496ec0118b31f2bcdbffbfd685ac5684 /ui/jquery.ui.autocomplete.js | |
parent | 6326da3fdb29ea4f40e39bc06abf14cde5ba5c8c (diff) | |
download | jquery-ui-c4c36e557ef2b3450bc365708064f7314bc6fdc4.tar.gz jquery-ui-c4c36e557ef2b3450bc365708064f7314bc6fdc4.zip |
Accordion, Autocomplete, Tabs: Separate callbacks and options in the defaults.
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 1685c0652..526eb3869 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -30,7 +30,16 @@ $.widget( "ui.autocomplete", { at: "left bottom", collision: "none" }, - source: null + source: null, + + // callbacks + change: null, + close: null, + focus: null, + open: null, + response: null, + search: null, + select: null }, pending: 0, |