|
@@ -4977,6 +4977,9 @@
|
|
|
var afterRender = function () {
|
|
var afterRender = function () {
|
|
|
renderedElements = isTable ? $element.children('tbody').children() : $element.children();
|
|
renderedElements = isTable ? $element.children('tbody').children() : $element.children();
|
|
|
$container.data('busyRendering', false);
|
|
$container.data('busyRendering', false);
|
|
|
|
|
+ if (typeof options.fetchMore !== 'undefined' && endIndex === allEntries.length - 1) {
|
|
|
|
|
+ options.fetchMore();
|
|
|
|
|
+ }
|
|
|
huePubSub.publish('foreach.visible.update.heights', id);
|
|
huePubSub.publish('foreach.visible.update.heights', id);
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -5074,9 +5077,6 @@
|
|
|
lastScrollTop = $container.scrollTop();
|
|
lastScrollTop = $container.scrollTop();
|
|
|
|
|
|
|
|
setStartAndEndFromScrollTop();
|
|
setStartAndEndFromScrollTop();
|
|
|
- if (typeof options.fetchMore !== 'undefined' && endIndex === allEntries.length - 1) {
|
|
|
|
|
- options.fetchMore();
|
|
|
|
|
- }
|
|
|
|
|
|
|
|
|
|
clearTimeout(renderThrottle);
|
|
clearTimeout(renderThrottle);
|
|
|
var startDiff = Math.abs($parentFVOwnerElement.data('startIndex') - startIndex);
|
|
var startDiff = Math.abs($parentFVOwnerElement.data('startIndex') - startIndex);
|