From 414c376a1aea28f8171176400201ebd48696434c Mon Sep 17 00:00:00 2001 From: Nils Kenneweg Date: Mon, 4 Mar 2013 13:54:03 +0100 Subject: [PATCH] fixed a bug resetting scroll when loading more data. --- select2.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/select2.js b/select2.js index 1f8e3ba5..9d471f29 100644 --- a/select2.js +++ b/select2.js @@ -1320,7 +1320,7 @@ the specific language governing permissions and limitations under the Apache Lic self.opts.populateResults.call(this, results, data.results, {term: term, page: page, context:context}); - self.postprocessResults(data); + self.postprocessResults(data, false, false); if (data.more===true) { more.detach().appendTo(results).text(self.opts.formatLoadMore(page+1)); @@ -1865,7 +1865,7 @@ the specific language governing permissions and limitations under the Apache Lic }, // single - postprocessResults: function (data, initial) { + postprocessResults: function (data, initial, noHighlightUpdate) { var selected = 0, self = this, showSearchInput = true; // find the selected element in the result list @@ -1878,8 +1878,9 @@ the specific language governing permissions and limitations under the Apache Lic }); // and highlight it - - this.highlight(selected); + if (noHighlightUpdate !== false) { + this.highlight(selected); + } // hide the search box if this is the first we got the results and there are a few of them