Remove obsolete debug.js

Signed-off-by: yubiuser <github@yubiuser.dev>
This commit is contained in:
yubiuser
2024-10-28 20:25:10 +01:00
parent 1e922a8b29
commit 9b4d03d53e
2 changed files with 1 additions and 74 deletions

2
.gitignore vendored
View File

@@ -7,7 +7,7 @@ TODO
*.zip
test.html
*.log
.php-cs-fixer.cache
# Intellij IDEA Project Files
*.iml

View File

@@ -1,73 +0,0 @@
/* Pi-hole: A black hole for Internet advertisements
* (c) 2017 Pi-hole, LLC (https://pi-hole.net)
* Network-wide ad blocking via your own hardware.
*
* This file is copyright under the latest version of the EUPL.
* Please see LICENSE file for your rights under this license. */
function eventsource() {
var ta = $("#output");
var upload = $("#upload");
var dbcheck = $("#dbcheck");
var checked = "";
var token = encodeURIComponent($("#token").text());
if (upload.prop("checked")) {
// add upload option
checked += "&upload";
}
if (dbcheck.prop("checked")) {
// add db integrity check option
checked += "&dbcheck";
}
// IE does not support EventSource - load whole content at once
if (typeof EventSource !== "function") {
$.ajax({
method: "GET",
url: "scripts/php/debug.php?IE&token=" + token + checked,
async: false,
}).done(function (data) {
ta.show();
ta.empty();
ta.append(data);
});
return;
}
var source = new EventSource("scripts/php/debug.php?&token=" + token + checked);
// Reset and show field
ta.empty();
ta.show();
source.addEventListener(
"message",
function (e) {
ta.append(e.data);
// scroll to the bottom of #output (most recent data)
var taBottom = ta.offset().top + ta.outerHeight(true);
$("html, body").scrollTop(taBottom - $(window).height());
},
false
);
// Will be called when script has finished
source.addEventListener(
"error",
function () {
source.close();
$("#output").removeClass("loading");
},
false
);
}
$("#debugBtn").on("click", function () {
$("#debugBtn").prop("disabled", true);
$("#upload").prop("disabled", true);
$("#dbcheck").prop("disabled", true);
$("#output").addClass("loading");
eventsource();
});