Skip to content

Commit

Permalink
Fixed bug where missing opts in Autosuggest threw an error. [ticket #…
Browse files Browse the repository at this point in the history
…147]
  • Loading branch information
Michael Mathews committed Oct 15, 2009
1 parent b0558f9 commit d05f344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/autosuggest/autosuggest.js
Expand Up @@ -749,7 +749,7 @@
}

this.opts.selectCompletedText =
(opts.selectCompletedText === undefined)? true : opts.selectCompletedText;
(this.opts.selectCompletedText === undefined)? true : this.opts.selectCompletedText;
}

/* public fields *************************************************************/
Expand Down

0 comments on commit d05f344

Please sign in to comment.