Skip to content

Commit b7e581b

Browse files
committed
Fix #247
1 parent a41aae0 commit b7e581b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/virtual.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default class Virtual {
153153
handleFront () {
154154
const overs = this.getScrollOvers()
155155
// should not change range if start doesn't exceed overs
156-
if (overs > this.range.start) {
156+
if (overs > this.range.start || !this.param) {
157157
return
158158
}
159159

0 commit comments

Comments
 (0)