We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6da4c43 commit b5abb5bCopy full SHA for b5abb5b
src/components/InfiniteLoading.vue
@@ -263,7 +263,8 @@
263
attemptLoad(isContinuousCall) {
264
const currentDistance = this.getCurrentDistance();
265
266
- if (!this.isComplete && currentDistance <= this.distance) {
+ if (!this.isComplete && currentDistance <= this.distance &&
267
+ (this.$el.offsetWidth + this.$el.offsetHeight) > 0) {
268
this.isLoading = true;
269
270
if (typeof this.onInfinite === 'function') {
0 commit comments