mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-22 08:53:23 -05:00
In regards to #35, limits contacts to 200 for performance.
This commit is contained in:
parent
bc2ea843e4
commit
11480e8fd3
@ -185,7 +185,10 @@ $(function() {
|
||||
|
||||
}
|
||||
|
||||
volunteer_status(volunteer_ids);
|
||||
// For performance
|
||||
if (last_index <= 200) {
|
||||
volunteer_status(volunteer_ids);
|
||||
}
|
||||
|
||||
// volunteer status
|
||||
function volunteer_status(contacts) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user