Browse Source

In regards to #35, limits contacts to 200 for performance.

devel
Jonathan Rosenbaum 6 years ago
parent
commit
11480e8fd3
  1. 5
      js/transaction.js

5
js/transaction.js

@ -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…
Cancel
Save