remove console.logs

This commit is contained in:
2021-06-02 01:12:54 +02:00
parent 1641332661
commit 5b8ab6fa78

View File

@@ -76,7 +76,6 @@ function fastPosChanged() {
}
/* allow some basic shit */
console.log(clean)
if(clean == "*" || clean == ""){
console.log("lol")
retVal = true
@@ -166,7 +165,6 @@ function balance(){
}
jsonData = JSON.stringify(dictAll, null, 4);
console.log(jsonData)
/* transmitt */
fetch(window.location.href, {
@@ -176,8 +174,6 @@ function balance(){
'Content-Type': 'application/json' },
body: jsonData
}).then(r => r.json()).then(j => {
console.log(j)
console.log(j["content"])
cont = document.getElementById("response-container")
cont.innerHTML = j["content"]
})