mirror of
https://github.com/mempool/mempool.git
synced 2025-10-04 19:05:06 +02:00
Don't tweak scrollLeft if time is left to right
This commit is contained in:
@@ -194,14 +194,16 @@ export class StartComponent implements OnInit, AfterViewChecked, OnDestroy {
|
|||||||
applyScrollLeft(): void {
|
applyScrollLeft(): void {
|
||||||
if (this.blockchainContainer?.nativeElement?.scrollWidth) {
|
if (this.blockchainContainer?.nativeElement?.scrollWidth) {
|
||||||
let lastScrollLeft = null;
|
let lastScrollLeft = null;
|
||||||
while (this.scrollLeft < 0 && this.shiftPagesForward() && lastScrollLeft !== this.scrollLeft) {
|
if (!this.timeLtr) {
|
||||||
lastScrollLeft = this.scrollLeft;
|
while (this.scrollLeft < 0 && this.shiftPagesForward() && lastScrollLeft !== this.scrollLeft) {
|
||||||
this.scrollLeft += this.pageWidth;
|
lastScrollLeft = this.scrollLeft;
|
||||||
}
|
this.scrollLeft += this.pageWidth;
|
||||||
lastScrollLeft = null;
|
}
|
||||||
while (this.scrollLeft > this.blockchainContainer.nativeElement.scrollWidth && this.shiftPagesBack() && lastScrollLeft !== this.scrollLeft) {
|
lastScrollLeft = null;
|
||||||
lastScrollLeft = this.scrollLeft;
|
while (this.scrollLeft > this.blockchainContainer.nativeElement.scrollWidth && this.shiftPagesBack() && lastScrollLeft !== this.scrollLeft) {
|
||||||
this.scrollLeft -= this.pageWidth;
|
lastScrollLeft = this.scrollLeft;
|
||||||
|
this.scrollLeft -= this.pageWidth;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.blockchainContainer.nativeElement.scrollLeft = this.scrollLeft;
|
this.blockchainContainer.nativeElement.scrollLeft = this.scrollLeft;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user