aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/static
diff options
context:
space:
mode:
authorPjotr Prins2020-07-17 11:03:04 +0100
committerPjotr Prins2020-07-17 11:03:04 +0100
commit48caca541bf19e1c4f75f5b95272b99eb06a02bc (patch)
treebc576359bbde981b68255bf0b55972e54b9d5ae0 /bh20simplewebuploader/static
parent108a96f8608c3d82c8cfe1d33ebb37501c01413b (diff)
downloadbh20-seq-resource-48caca541bf19e1c4f75f5b95272b99eb06a02bc.tar.gz
bh20-seq-resource-48caca541bf19e1c4f75f5b95272b99eb06a02bc.tar.lz
bh20-seq-resource-48caca541bf19e1c4f75f5b95272b99eb06a02bc.zip
Update map popup
Diffstat (limited to 'bh20simplewebuploader/static')
-rw-r--r--bh20simplewebuploader/static/map.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bh20simplewebuploader/static/map.js b/bh20simplewebuploader/static/map.js
index 5ecf95d..1003f7d 100644
--- a/bh20simplewebuploader/static/map.js
+++ b/bh20simplewebuploader/static/map.js
@@ -42,7 +42,7 @@ function updateMapMarkers(data) {
[lon, lat] = coordinates.map(parseFloat);
let point = L.point()
marker = (L.marker([lat, lon]));
- marker.bindPopup("<b>" + label + "</b><br/>" + "FastaCount: " +fastaCount);
+ marker.bindPopup("<b>" + label + "</b><br/>" + "SARS-CoV-2<br/>sequences: " +fastaCount);
markers.addLayer(marker);
}
}