aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBonfaceKilz2020-06-17 03:04:18 +0300
committerBonfaceKilz2020-06-17 03:04:18 +0300
commit3219721c15ba9518ea153bea335966b45a4cffcb (patch)
tree27ccb66ce93a32da1ddd0b2553d0e2ed4a3fdae0
parentd18005b1880692cab16ecfc9e0c950abc4259087 (diff)
downloadbh20-seq-resource-3219721c15ba9518ea153bea335966b45a4cffcb.tar.gz
bh20-seq-resource-3219721c15ba9518ea153bea335966b45a4cffcb.tar.lz
bh20-seq-resource-3219721c15ba9518ea153bea335966b45a4cffcb.zip
Remove literal json representation of map
-rw-r--r--bh20simplewebuploader/static/main.css11
-rw-r--r--bh20simplewebuploader/static/main.js1
2 files changed, 0 insertions, 12 deletions
diff --git a/bh20simplewebuploader/static/main.css b/bh20simplewebuploader/static/main.css
index cadb9a5..cc6d5e4 100644
--- a/bh20simplewebuploader/static/main.css
+++ b/bh20simplewebuploader/static/main.css
@@ -227,17 +227,6 @@ a {
column-width: 250px;
}
-pre code {
- background-color: #eee;
- display: flex;
- width: max-content;
- margin: 0 auto;
- overflow-y: scroll;
- max-height: 300px;
- padding: 10px;
- border: solid 1px black;
-}
-
.record, .record .field-group, .record .field-group .field {
display: flex;
flex-direction: column;
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");
});