Skip to content

Commit 84e9965

Browse files
committed
Autocomplete: Added missing semicolon.
1 parent d8b0ce8 commit 84e9965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.autocomplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ $.widget( "ui.autocomplete", {
271271
this._initSource();
272272
}
273273
if ( key === "appendTo" ) {
274-
this.menu.element.appendTo( $( value || "body", this.element[0].ownerDocument )[0] )
274+
this.menu.element.appendTo( $( value || "body", this.element[0].ownerDocument )[0] );
275275
}
276276
if ( key === "disabled" && value && this.xhr ) {
277277
this.xhr.abort();

0 commit comments

Comments
 (0)