diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-10-12 13:58:02 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-10-12 13:58:02 -0400 |
commit | 84e99650bf2d8712d9997f36e2c5663cdf8a99ea (patch) | |
tree | 62f60eb6ba0e91202d09a0e3b5f381e82d8dc575 | |
parent | d8b0ce8db29a74b9ca3b3be58b9c0bdce472c5d6 (diff) | |
download | jquery-ui-84e99650bf2d8712d9997f36e2c5663cdf8a99ea.tar.gz jquery-ui-84e99650bf2d8712d9997f36e2c5663cdf8a99ea.zip |
Autocomplete: Added missing semicolon.
-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 7edd22a63..853de21ae 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -271,7 +271,7 @@ $.widget( "ui.autocomplete", { this._initSource(); } if ( key === "appendTo" ) { - this.menu.element.appendTo( $( value || "body", this.element[0].ownerDocument )[0] ) + this.menu.element.appendTo( $( value || "body", this.element[0].ownerDocument )[0] ); } if ( key === "disabled" && value && this.xhr ) { this.xhr.abort(); |