Tamás

Results 2 comments of Tamás

Sure I set it to `minchars` to `0`. It works well, but there is a small bug. My scenario is the following: You click into the textbox and shows suggestions...

The actual problem is here: ``` isBadQuery: function (q) { if (!this.options.preventBadQueries){ return false; } var badQueries = this.badQueries, i = badQueries.length; while (i--) { if (q.indexOf(badQueries[i]) === 0) {...