Froze Release11.2 #177

Merged
bema merged 34 commits from master into release 2023-05-09 15:02:46 +02:00
Showing only changes of commit 1199e06bef - Show all commits

View File

@@ -265,9 +265,11 @@ function performRequest(endpoint, checkXML, checkTransform) {
document.getElementById("procinfo").innerText = ' Computed using ' + result.processor
if (result.type)
document.getElementById("procinfo").innerText += ". Returned: " + result.type;
else
document.getElementById("procinfo").innerText += ". Engine doesn't support return of data types.";
if (result.status = "OK") {
document.getElementById("procinfo").innerText += " in " + result.time + "ms";
document.getElementById("procinfo").innerText += " (" + result.time + "ms)";
procinfo.style.color = "#30aa58";
} else {
procinfo.style.color = "#aa3030";