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 9aaea8d commit eb22df7Copy full SHA for eb22df7
src/index.js
@@ -240,7 +240,7 @@ const VirtualList = Vue.component('virtual-list', {
240
const scrollSize = this.getScrollSize()
241
242
// iOS scroll-spring-back behavior will make direction mistake
243
- if (offset < 0 || (offset + clientSize > scrollSize) || !scrollSize) {
+ if (offset < 0 || (offset + clientSize > scrollSize + 1) || !scrollSize) {
244
return
245
}
246
0 commit comments