1
0
mirror of synced 2024-11-26 23:06:02 +03:00

Added ajax.transport support to default options

This commit is contained in:
rvignacio 2013-03-23 17:26:37 -03:00
parent 4a1c8491a7
commit 04a6535bd5

View File

@ -355,7 +355,7 @@ the specific language governing permissions and limitations under the Apache Lic
var requestNumber = requestSequence, // this request's sequence number var requestNumber = requestSequence, // this request's sequence number
data = options.data, // ajax data function data = options.data, // ajax data function
url = ajaxUrl, // ajax url string or function url = ajaxUrl, // ajax url string or function
transport = options.transport || $.ajax, transport = options.transport,
type = options.type || 'GET', // set type of request (GET or POST) type = options.type || 'GET', // set type of request (GET or POST)
params = {}; params = {};
@ -731,7 +731,7 @@ the specific language governing permissions and limitations under the Apache Lic
}); });
} }
opts = $.extend({}, { opts = $.extend(true, {}, {
populateResults: function(container, results, query) { populateResults: function(container, results, query) {
var populate, data, result, children, id=this.opts.id, self=this; var populate, data, result, children, id=this.opts.id, self=this;
@ -2754,7 +2754,12 @@ the specific language governing permissions and limitations under the Apache Lic
blurOnChange: false, blurOnChange: false,
selectOnBlur: false, selectOnBlur: false,
adaptContainerCssClass: function(c) { return c; }, adaptContainerCssClass: function(c) { return c; },
adaptDropdownCssClass: function(c) { return null; } adaptDropdownCssClass: function(c) { return null; },
ajax: {
transport: function(options) {
return $.ajax(options);
}
}
}; };
// exports // exports