diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-07-10 02:50:51 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-07-10 02:50:51 +0000 |
commit | 12cdae02b136f7a542dfac7319d008cf9c3d5505 (patch) | |
tree | 5face07144b2c77f390a03e96d9bdd710e152255 /ui/ui.autocomplete.js | |
parent | 4f412c60ea8dbf11b9447e838b815214ab3ca1a2 (diff) | |
download | jquery-ui-12cdae02b136f7a542dfac7319d008cf9c3d5505.tar.gz jquery-ui-12cdae02b136f7a542dfac7319d008cf9c3d5505.zip |
New plugins for 1.6: Fixed headers and indentation.
Diffstat (limited to 'ui/ui.autocomplete.js')
-rw-r--r-- | ui/ui.autocomplete.js | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/ui/ui.autocomplete.js b/ui/ui.autocomplete.js index 19a51451a..8476c5c1d 100644 --- a/ui/ui.autocomplete.js +++ b/ui/ui.autocomplete.js @@ -1,18 +1,16 @@ /* - * Autocomplete - jQuery plugin 1.0.1 + * jQuery UI Autocomplete * - * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer - * - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - * Revision: $Id: jquery.autocomplete.js 5698 2008-05-27 13:53:30Z paul.bakaus $ + * Copyright (c) 2007, 2008 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Autocomplete * + * Depends: + * ui.core.js */ - -;(function($) { - +(function($) { $.widget("ui.autocomplete", { @@ -47,7 +45,6 @@ $.widget("ui.autocomplete", { }); - $.Autocompleter = function(input, options) { var KEY = { @@ -772,4 +769,4 @@ $.Autocompleter.Selection = function(field, start, end) { field.focus(); }; -})(jQuery);
\ No newline at end of file +})(jQuery); |