Lower scroll threshold to fix load more not triggering. (#576)
* Lower scroll threshold to fix load more not triggering. fixes #575
This commit is contained in:
parent
6a4eee3711
commit
33a5be5a7d
@ -78,7 +78,7 @@ export class TransactionsListComponent implements OnInit, OnChanges {
|
|||||||
const scrollTop = document.documentElement.scrollTop;
|
const scrollTop = document.documentElement.scrollTop;
|
||||||
if (scrollHeight > 0){
|
if (scrollHeight > 0){
|
||||||
const percentageScrolled = scrollTop * 100 / scrollHeight;
|
const percentageScrolled = scrollTop * 100 / scrollHeight;
|
||||||
if (percentageScrolled > 90){
|
if (percentageScrolled > 70){
|
||||||
this.loadMore.emit();
|
this.loadMore.emit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user