diff options
author | BonfaceKilz | 2020-06-17 03:04:18 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-06-17 03:04:18 +0300 |
commit | 3219721c15ba9518ea153bea335966b45a4cffcb (patch) | |
tree | 27ccb66ce93a32da1ddd0b2553d0e2ed4a3fdae0 /bh20simplewebuploader/static/main.js | |
parent | d18005b1880692cab16ecfc9e0c950abc4259087 (diff) | |
download | bh20-seq-resource-3219721c15ba9518ea153bea335966b45a4cffcb.tar.gz bh20-seq-resource-3219721c15ba9518ea153bea335966b45a4cffcb.tar.lz bh20-seq-resource-3219721c15ba9518ea153bea335966b45a4cffcb.zip |
Remove literal json representation of map
Diffstat (limited to 'bh20simplewebuploader/static/main.js')
-rw-r--r-- | bh20simplewebuploader/static/main.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bh20simplewebuploader/static/main.js b/bh20simplewebuploader/static/main.js index d90b5af..7361a99 100644 --- a/bh20simplewebuploader/static/main.js +++ b/bh20simplewebuploader/static/main.js @@ -19,7 +19,6 @@ function fetchAPI(apiEndPoint) { return response.json(); }) .then(data => { - document.getElementById("json").textContent = JSON.stringify(data, undefined, 2); document.getElementById("results").classList.remove("invisible"); document.getElementById("loader").classList.add("invisible"); }); |