remove Browser DEV output

This commit is contained in:
2025-12-11 17:52:02 +01:00
parent 08486ed928
commit 87f6a967c4

View File

@@ -407,7 +407,6 @@ var handleRun = function handleRun(xhr) {
var imapsync = function imapsync() {
var querystring = $("#form").serialize();
//console.log(querystring);
$("#abort").text("\n\n\n"); // clean abort console
var consoleEl = document.getElementById("console");
@@ -466,14 +465,12 @@ var imapsync = function imapsync() {
xhr.onprogress = function () {
appendChunk(); // neue Log-Zeilen nach #output
handleRun(xhr); // Fortschrittsbalken + #console updaten
console.log("onprogress");
};
// am Ende sicherstellen, dass auch der letzte Rest dran ist
xhr.onload = function () {
appendChunk();
handleRun(xhr);
console.log("onload");
};
xhr.onerror = function () {