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

@ -66,6 +66,7 @@ function success(data, textStatus, jqXHR){
if (data.status.partitions){
generatePartitions(data.status.partitions);
}
setTimeout(function(){updateStatus(false);}, 5000);
}
function updateStatus(getDiskInfo){
@ -75,5 +76,4 @@ function updateStatus(getDiskInfo){
$(document).ready(function() {
updateStatus(true);
setInterval(function(){updateStatus(false);}, 5000);
});