CC-4943: Raspberry Pi optimization: don't create new background AJAX request until the previous one has returned

-fixed
This commit is contained in:
Martin Konecny 2013-02-14 12:58:31 -05:00
parent 30c47df93d
commit bb7e56e39e
7 changed files with 22 additions and 12 deletions

View file

@ -372,6 +372,7 @@ function checkSCUploadStatus(){
}else if(json.sc_id == "-3"){
$("span[id="+id+"]:not(.recording)").removeClass("progress").addClass("sc-error");
}
setTimeout(checkSCUploadStatus, 5000);
});
});
}
@ -424,6 +425,7 @@ function getCurrentShow(){
$(this).remove("span[small-icon now-playing]");
}
});
setTimeout(getCurrentShow, 5000);
});
}
@ -564,8 +566,8 @@ function alertShowErrorAndReload(){
preloadEventFeed();
$(document).ready(function(){
setInterval( "checkSCUploadStatus()", 5000 );
setInterval( "getCurrentShow()", 5000 );
checkSCUploadStatus();
getCurrentShow();
});
var view_name;