From 773e13a441127eb33099d78d631ae2e4d39240f2 Mon Sep 17 00:00:00 2001 From: Beu Date: Tue, 15 Dec 2020 01:54:30 +0100 Subject: [PATCH] remove debug log --- script.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/script.js b/script.js index 5d70886..70e90b9 100644 --- a/script.js +++ b/script.js @@ -38,13 +38,11 @@ function upload_file(file_obj,file_name) body: file_obj }); var text = await response.text(); - console.log(text); divresponse.innerHTML = text ; document.getElementById('copytoclipboard').style.visibility = "visible"; if (text.startsWith("http")) { var fturl = document.getElementsByTagName("fturl"); - console.log(fturl); Array.from(fturl).forEach(tag => tag.innerHTML = text); }