From 7a3d3dcd2bc90be50fa99c191883977ef34cdfdb Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Mon, 25 Mar 2013 09:17:19 -0700 Subject: [PATCH] Revert "Added ajax.transport support to default options" This reverts commit 04a6535bd592033fea4821e8959f84c269ee117b. --- select2.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/select2.js b/select2.js index bca885c3..2f415137 100644 --- a/select2.js +++ b/select2.js @@ -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, + transport = options.transport || $.ajax, 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(true, {}, { + opts = $.extend({}, { populateResults: function(container, results, query) { var populate, data, result, children, id=this.opts.id, self=this; @@ -2764,12 +2764,7 @@ 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; }, - ajax: { - transport: function(options) { - return $.ajax(options); - } - } + adaptDropdownCssClass: function(c) { return null; } }; // exports