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 2d19805 commit 239e3b0Copy full SHA for 239e3b0
src/components/InfiniteLoading.vue
@@ -134,8 +134,10 @@
134
if (ev && ev.constructor === Event) {
135
if (!this.inThrottle) {
136
this.inThrottle = true;
137
- this.attemptLoad();
138
- setTimeout(() => { this.inThrottle = false; }, this.throttleLimit);
+ setTimeout(() => {
+ this.attemptLoad();
139
+ this.inThrottle = false;
140
+ }, this.throttleLimit);
141
}
142
} else {
143
this.attemptLoad();
0 commit comments