Add delay of 0.5 sec before trying to load all data

This commit is contained in:
DL6ER
2017-03-24 22:01:58 +01:00
parent ebef61614d
commit 8d4864eb17

View File

@@ -64,11 +64,13 @@ function updateSummaryData(runOnce) {
{
// FTL was previously offline
$("#temperature").text(" ");
updateQueriesOverTime();
updateForwardedOverTime();
updateQueryTypes();
updateTopClientsChart();
updateTopLists();
window.setTimeout(function() {
updateQueriesOverTime();
updateForwardedOverTime();
updateQueryTypes();
updateTopClientsChart();
updateTopLists();
}, 500);
}
}