From 20cbfb593e89b07d68e6c16106a24e79cea61329 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Sun, 19 Jul 2020 11:30:28 +0100 Subject: Moch XML output --- bh20simplewebuploader/static/main.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bh20simplewebuploader/static/main.js') diff --git a/bh20simplewebuploader/static/main.js b/bh20simplewebuploader/static/main.js index 208823a..deda6ec 100644 --- a/bh20simplewebuploader/static/main.js +++ b/bh20simplewebuploader/static/main.js @@ -18,10 +18,13 @@ function toDIVTable(rows) { else { html = '
'; rows.forEach(row => { + id = row['id']; seq = row['seq']; + info = row['info']; html += '
'; - html += cell(row['id']); + html += cell(''+id+''); html += cell('FASTA'); + html += cell('EBI/ENA export XML'); html += '
'; }); html += '
'; -- cgit v1.2.3