From 5b8ab6fa78bb398ef6600ddcce56280d20d29ab7 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Wed, 2 Jun 2021 01:12:54 +0200 Subject: [PATCH] remove console.logs --- static/balance.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/static/balance.js b/static/balance.js index ec747ea..cf6c669 100644 --- a/static/balance.js +++ b/static/balance.js @@ -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"] })