Merge pull request #327 from AileenCGN/1.0.0/infinite-scroll-fix
🎣 Infinite scroll: no API request on last page
This commit is contained in:
commit
9aa6ff1716
|
@ -46,6 +46,11 @@ $(function ($) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// return if currentPage is the last page already
|
||||||
|
if (currentPage === maxPages) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
isLoading = true;
|
isLoading = true;
|
||||||
|
|
||||||
// next page
|
// next page
|
||||||
|
|
Loading…
Reference in New Issue