1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Merge pull request #1083 from rvignacio/default_ajax.transport

Added ajax.transport default option
This commit is contained in:
Igor Vaynberg 2013-03-23 21:22:34 -07:00
commit a624417556

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