2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-11-09 14:50:57 +00:00

Add ajaxSettings to src file (was in dist by mistake).

This commit is contained in:
Tomas Kirda 2014-08-26 13:29:33 -05:00
parent b6d3f75bbe
commit da54bac1ed

View File

@ -53,6 +53,7 @@
var noop = function () { },
that = this,
defaults = {
ajaxSettings: {},
autoSelectFirst: false,
appendTo: document.body,
serviceUrl: null,
@ -521,7 +522,8 @@
options = that.options,
serviceUrl = options.serviceUrl,
params,
cacheKey;
cacheKey,
ajaxSettings;
options.params[options.paramName] = q;
params = options.ignoreParams ? null : options.params;
@ -546,12 +548,17 @@
if (that.currentRequest) {
that.currentRequest.abort();
}
that.currentRequest = $.ajax({
ajaxSettings = {
url: serviceUrl,
data: params,
type: options.type,
dataType: options.dataType
}).done(function (data) {
};
$.extend(ajaxSettings, options.ajaxSettings);
that.currentRequest = $.ajax(ajaxSettings).done(function (data) {
var result;
that.currentRequest = null;
result = options.transformResult(data);