1
0
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:
Jonathan Rosenbaum 2018-05-18 06:44:59 +00:00
parent bc2ea843e4
commit 11480e8fd3

View File

@ -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) {