Autocomplete: Added missing semicolon.

This commit is contained in:
Scott González 2011-10-12 13:58:02 -04:00
parent d8b0ce8db2
commit 84e99650bf

View File

@ -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();