Tweak processing/render time

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König
2023-11-03 21:38:50 +01:00
parent c0eab57266
commit 5bcc535970
3 changed files with 0 additions and 14 deletions
-6
View File
@@ -676,12 +676,6 @@ function addAdvancedInfo() {
const endtime = parseFloat(advancedInfoSource.data("endtime"));
const totaltime = 1e3 * (endtime - starttime);
// Hide advanced info if settings level is lower than 2
if (settingsLevel < 2) {
advancedInfoTarget.hide();
return;
}
// Show advanced info
advancedInfoTarget.empty();
-2
View File
@@ -174,8 +174,6 @@ function eventsource(partial) {
"using a more specific search term or increase N.<br>";
}
result += "<br>Search took " + (1000 * data.took).toFixed(1) + " ms";
ta.append(result);
})
.fail(function (data) {
@@ -58,12 +58,6 @@ function importZIP() {
$("#modal-import-success-message").html(text);
}
if ("took" in data) {
$("#modal-import-info-message").text(
"Processing took " + data.took.toFixed(3) + " seconds."
);
}
$("#modal-import").modal("show");
})
.catch(error => {