2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2025-01-25 16:18:30 +00:00

Parameters were passed to method 'onSearchStart'

We need to add extra parameter to search criteria
This commit is contained in:
Gediminas Backevicius 2013-02-18 16:40:20 +02:00
parent 0add15ec72
commit 91df66d4da

View File

@ -401,8 +401,8 @@
that.suggestions = response.suggestions; that.suggestions = response.suggestions;
that.suggest(); that.suggest();
} else if (!that.isBadQuery(q)) { } else if (!that.isBadQuery(q)) {
options.onSearchStart.call(that.element, q);
options.params[options.paramName] = q; options.params[options.paramName] = q;
options.onSearchStart.call(that.element, options.params);
$.ajax({ $.ajax({
url: options.serviceUrl, url: options.serviceUrl,
data: options.params, data: options.params,