From: Scott González Date: Wed, 12 Oct 2011 17:58:02 +0000 (-0400) Subject: Autocomplete: Added missing semicolon. X-Git-Tag: 1.9m7~196 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=84e99650bf2d8712d9997f36e2c5663cdf8a99ea;p=jquery-ui.git Autocomplete: Added missing semicolon. --- 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();