ignite-tc-helper-web/src/main/webapp/current.html [217:241]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
g_checkForUpdateSched = false;
$.ajax({
url: curFailuresUrl,
success: function (result) {
if (g_shownDataHashCodeHex !== "" && isDefinedAndFilled(result.hashCodeHex)) {
if (g_shownDataHashCodeHex === result.hashCodeHex) {
if (!g_checkForUpdateSched) {
g_checkForUpdateSched = true;
setTimeout(checkForUpdate, 60000);
}
$("#loadStatus").html("");
} else {
loadData(); // data changed, show new
}
} else {
loadData();
}
},
error: showErrInLoadStatus
});
}
function loadData() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ignite-tc-helper-web/src/main/webapp/pr.html [134:158]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
g_checkForUpdateSched = false;
$.ajax({
url: curFailuresUrl,
success: function (result) {
if (g_shownDataHashCodeHex !== "" && isDefinedAndFilled(result.hashCodeHex)) {
if (g_shownDataHashCodeHex === result.hashCodeHex) {
if (!g_checkForUpdateSched) {
g_checkForUpdateSched = true;
setTimeout(checkForUpdate, 60000);
}
$("#loadStatus").html("");
} else {
loadData(); // data changed, show new
}
} else {
loadData();
}
},
error: showErrInLoadStatus
});
}
function loadData() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -