1
0
mirror of synced 2024-11-22 13:06:08 +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
data = options.data, // ajax data 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)
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) {
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,
selectOnBlur: false,
adaptContainerCssClass: function(c) { return c; },
adaptDropdownCssClass: function(c) { return null; }
adaptDropdownCssClass: function(c) { return null; },
ajax: {
transport: function(options) {
return $.ajax(options);
}
}
};
// exports