VIVO-699: increased retry count to ensure faculty data is retrieved.

This commit is contained in:
Tim Worrall 2014-07-14 11:41:33 -04:00
parent cb321a1cd9
commit a68c8d02c6

View file

@ -55,7 +55,7 @@ $(document).ready(function(){
$.getJSON(url, function(results) {
if ( results == null || results.individuals.length == 0 ) {
if ( retryCount < 3 ) {
if ( retryCount < 5 ) {
retryCount = retryCount + 1;
getFacultyMembers();
}