mirror of
https://github.com/GenZmeY/casper-i18n.git
synced 2025-01-18 18:43:43 +00:00
🎣 Infinite scroll: no API request on last page
no issue Brings back a little safety guard: when the current page is also the last page, don't make an API request to the server.
This commit is contained in:
parent
0f9410fb3d
commit
8690450eae
@ -46,6 +46,11 @@ $(function ($) {
|
||||
return;
|
||||
}
|
||||
|
||||
// return if currentPage is the last page already
|
||||
if (currentPage === maxPages) {
|
||||
return;
|
||||
}
|
||||
|
||||
isLoading = true;
|
||||
|
||||
// next page
|
||||
|
Loading…
x
Reference in New Issue
Block a user