fix(client): Fix sticky sidebar behavior
This commit is contained in:
parent
e54fd6c2cb
commit
937df577f1
|
@ -22,7 +22,7 @@ export class StickySidebar {
|
||||||
|
|
||||||
if (this.isTop) {
|
if (this.isTop) {
|
||||||
this.isTop = false;
|
this.isTop = false;
|
||||||
this.spacer.style.marginTop = `${scrollTop}px`;
|
this.spacer.style.marginTop = `${this.lastScrollTop}px`;
|
||||||
}
|
}
|
||||||
} else { // upscroll
|
} else { // upscroll
|
||||||
const overflow = this.el.clientHeight - window.innerHeight;
|
const overflow = this.el.clientHeight - window.innerHeight;
|
||||||
|
|
Loading…
Reference in New Issue