1
0
mirror of synced 2025-02-09 16:49:24 +03:00

fixed a bug resetting scroll when loading more data.

This commit is contained in:
Nils Kenneweg 2013-03-04 13:54:03 +01:00
parent fb69e3a3f0
commit 414c376a1a

View File

@ -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