Skip to content

Commit b68b116

Browse files
committed
Autocomplete: Fixed spacing.
1 parent 1626c97 commit b68b116

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/jquery.ui.autocomplete.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ $.widget( "ui.autocomplete", $.ui.autocomplete, {
577577
options: {
578578
messages: {
579579
noResults: "No search results.",
580-
results: function(amount) {
580+
results: function( amount ) {
581581
return amount + ( amount > 1 ? " results are" : " result is" ) +
582582
" available, use up and down arrow keys to navigate.";
583583
}
@@ -587,7 +587,7 @@ $.widget( "ui.autocomplete", $.ui.autocomplete, {
587587
__response: function( content ) {
588588
var message;
589589
this._superApply( arguments );
590-
if ( this.options.disabled || this.cancelSearch) {
590+
if ( this.options.disabled || this.cancelSearch ) {
591591
return;
592592
}
593593
if ( content && content.length ) {

0 commit comments

Comments
 (0)