From b0a11927164e9f52e8dc64376820a57c65981216 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 12 May 2015 22:14:39 -0700 Subject: [PATCH 1/3] bower.json: main: select2.css => core.scss Per bower/bower.json-spec#43 : > Use source files with module exports and imports over pre-built distribution files. Also, the example in that PR includes /sass/motion.scss in and excludes /dist/movement.css & /dist/movement.min.css from its `main`. --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 1a1fa99e..834e4957 100644 --- a/bower.json +++ b/bower.json @@ -3,7 +3,7 @@ "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", "main": [ "dist/js/select2.js", - "dist/css/select2.css" + "src/scss/core.scss" ], "repository": { "type": "git", From 45cfac7456d9ce5b548fcfc5ae39c12a7a36071f Mon Sep 17 00:00:00 2001 From: Gilad Peleg Date: Wed, 13 May 2015 17:34:38 +0300 Subject: [PATCH 2/3] Update ajax example to reflect pagination --- docs/examples.html | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/examples.html b/docs/examples.html index ccb751d2..e7f4e4d2 100644 --- a/docs/examples.html +++ b/docs/examples.html @@ -272,12 +272,18 @@ $(".js-data-example-ajax").select2({ page: params.page }; }, - processResults: function (data, page) { - // parse the results into the format expected by Select2. + processResults: function (data, params) { + // parse the results into the format expected by Select2 // since we are using custom formatting functions we do not need to - // alter the remote JSON data + // alter the remote JSON data, except to indicate that infinite + // scrolling can be used + params.page = params.page || 1; + return { - results: data.items + results: data.items, + pagination: { + more: (params.page * 30) < data.total_count + } }; }, cache: true From da5a72c3ac71522300203c86e85090eae56156cb Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 19 May 2015 16:10:16 -0700 Subject: [PATCH 3/3] Fixed AjaxAdapter's super constructor call Replaced ArrayAdapter super constructor call with correct AjaxAdapter super constructor call. This will allow users to initialize an Ajax select with data. --- src/js/select2/data/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/select2/data/ajax.js b/src/js/select2/data/ajax.js index d54b5a58..0b6a6d5e 100644 --- a/src/js/select2/data/ajax.js +++ b/src/js/select2/data/ajax.js @@ -10,7 +10,7 @@ define([ this.processResults = this.ajaxOptions.processResults; } - ArrayAdapter.__super__.constructor.call(this, $element, options); + AjaxAdapter.__super__.constructor.call(this, $element, options); } Utils.Extend(AjaxAdapter, ArrayAdapter);