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 f14329f commit aaa62deCopy full SHA for aaa62de
src/components/InfiniteLoading.vue
@@ -194,14 +194,14 @@ export default {
194
});
195
196
this.$on('$InfiniteLoading:reset', (ev) => {
197
+ this.status = STATUS.READY;
198
+ this.isFirstLoad = true;
199
+ scrollBarStorage.remove(this.scrollParent);
200
this.scrollParent.addEventListener('scroll', this.scrollHandler, evt3rdArg);
201
202
// wait for list to be empty and the empty action may trigger a scroll event
203
setTimeout(() => {
- this.status = STATUS.READY;
- this.isFirstLoad = true;
204
throttleer.reset();
- scrollBarStorage.remove(this.scrollParent);
205
this.scrollHandler();
206
}, 1);
207
0 commit comments