Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Denis Hilt (https://github.com/dhilt)
Copyright (c) 2026 Denis Hilt (https://github.com/dhilt)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,4 +293,4 @@ VScroll will receive its own Adapter API documentation later, but for now please

__________

2025 © [Denis Hilt](https://github.com/dhilt)
2026 © [Denis Hilt](https://github.com/dhilt)
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h2 id="project_tagline">
</div>
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">2025 © <a href="https://github.com/dhilt">Denis Hilt</a></p>
<p class="copyright">2026 © <a href="https://github.com/dhilt">Denis Hilt</a></p>
</footer>
</div>
<script src="./index.js"></script>
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscroll",
"version": "1.8.1",
"version": "1.8.2",
"description": "Virtual scroll engine",
"main": "dist/bundles/vscroll.umd.js",
"module": "dist/bundles/vscroll.esm5.js",
Expand Down
8 changes: 4 additions & 4 deletions src/classes/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ export class State implements IState {
return {
...(cycle.innerLoop.first
? {
process: cycle.initiator,
doRender: fetch.simulate && fetch.items.length > 0
}
process: cycle.initiator,
doRender: fetch.simulate && fetch.items.length > 0
}
: {})
};
}

endInnerLoop(): void {
const { fetch, clip, render, cycle } = this;
fetch.stopSimulate();
clip.reset(true);
clip.reset();
if (fetch.cancel) {
fetch.cancel();
fetch.cancel = null;
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
name: 'vscroll',
version: '1.8.1'
version: '1.8.2'
};
4 changes: 2 additions & 2 deletions tests/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscroll-tests",
"version": "1.8.1",
"version": "1.8.2",
"private": true,
"description": "Test suite for vscroll",
"type": "module",
Expand Down