about summary refs log tree commit diff
path: root/bh20simplewebuploader/templates
diff options
context:
space:
mode:
Diffstat (limited to 'bh20simplewebuploader/templates')
-rw-r--r--bh20simplewebuploader/templates/about.html13
-rw-r--r--bh20simplewebuploader/templates/blog.html13
-rw-r--r--bh20simplewebuploader/templates/demo.html6
-rw-r--r--bh20simplewebuploader/templates/download.html13
-rw-r--r--bh20simplewebuploader/templates/map.html13
5 files changed, 4 insertions, 54 deletions
diff --git a/bh20simplewebuploader/templates/about.html b/bh20simplewebuploader/templates/about.html
index 07b6951..4bd238e 100644
--- a/bh20simplewebuploader/templates/about.html
+++ b/bh20simplewebuploader/templates/about.html
@@ -11,19 +11,6 @@
 
       <script type="text/javascript">
         let scriptRoot = {{ request.script_root|tojson|safe }}; // examples
-
-        document.addEventListener("DOMContentLoaded", function(){
-            var count = fetch("/api/getCount")
-                .then((resp) => resp.json())
-                .then(function (data) {
-                    count = data["sequences"];
-              console.log(count);
-                    span = document.getElementById("Counter");
-                    txt = document.createTextNode(count);
-                    span.appendChild(txt);
-                });
-        });
-
       </script>
     </body>
 
diff --git a/bh20simplewebuploader/templates/blog.html b/bh20simplewebuploader/templates/blog.html
index 8f8ab66..dbc0b99 100644
--- a/bh20simplewebuploader/templates/blog.html
+++ b/bh20simplewebuploader/templates/blog.html
@@ -73,19 +73,6 @@
 
     <script type="text/javascript">
       let scriptRoot = {{ request.script_root|tojson|safe }}; // examples
-
-      document.addEventListener("DOMContentLoaded", function(){
-          var count = fetch("/api/getCount")
-              .then((resp) => resp.json())
-              .then(function (data) {
-                  count = data["sequences"];
-                  console.log(count);
-                  span = document.getElementById("Counter");
-                  txt = document.createTextNode(count);
-                  span.appendChild(txt);
-              });
-      });
-
     </script>
   </body>
 
diff --git a/bh20simplewebuploader/templates/demo.html b/bh20simplewebuploader/templates/demo.html
index 76c19c4..44aded0 100644
--- a/bh20simplewebuploader/templates/demo.html
+++ b/bh20simplewebuploader/templates/demo.html
@@ -5,6 +5,7 @@
     {% include 'banner.html' %}
     {% include 'menu.html' %}
     {% include 'search.html' %}
+      <p>The Virtuoso database contains <span id="CounterDB"></span> public sequences!</p>
     {% include 'demo-run.html' %}
     {% include 'footer.html' %}
 
@@ -12,16 +13,17 @@
       let scriptRoot = {{ request.script_root|tojson|safe }}; // examples
 
       document.addEventListener("DOMContentLoaded", function(){
-          var count = fetch("/api/getCount")
+          var count = fetch("/api/getCountDB")
               .then((resp) => resp.json())
               .then(function (data) {
                   count = data["sequences"];
                   console.log(count);
-                  span = document.getElementById("Counter");
+                  span = document.getElementById("CounterDB");
                   txt = document.createTextNode(count);
                   span.appendChild(txt);
               });
       });
+
     </script>
   </body>
 
diff --git a/bh20simplewebuploader/templates/download.html b/bh20simplewebuploader/templates/download.html
index 07b6951..4bd238e 100644
--- a/bh20simplewebuploader/templates/download.html
+++ b/bh20simplewebuploader/templates/download.html
@@ -11,19 +11,6 @@
 
       <script type="text/javascript">
         let scriptRoot = {{ request.script_root|tojson|safe }}; // examples
-
-        document.addEventListener("DOMContentLoaded", function(){
-            var count = fetch("/api/getCount")
-                .then((resp) => resp.json())
-                .then(function (data) {
-                    count = data["sequences"];
-              console.log(count);
-                    span = document.getElementById("Counter");
-                    txt = document.createTextNode(count);
-                    span.appendChild(txt);
-                });
-        });
-
       </script>
     </body>
 
diff --git a/bh20simplewebuploader/templates/map.html b/bh20simplewebuploader/templates/map.html
index 6d63c3c..595af0c 100644
--- a/bh20simplewebuploader/templates/map.html
+++ b/bh20simplewebuploader/templates/map.html
@@ -16,19 +16,6 @@
 
        <script type="text/javascript">
         let scriptRoot = {{ request.script_root|tojson|safe }}; // examples
-
-        document.addEventListener("DOMContentLoaded", function(){
-            var count = fetch("/api/getCount")
-                .then((resp) => resp.json())
-                .then(function (data) {
-                    count = data["sequences"];
-              console.log(count);
-                    span = document.getElementById("Counter");
-                    txt = document.createTextNode(count);
-                    span.appendChild(txt);
-                });
-        });
-
       </script>
 
 <!-- Make sure you put this AFTER Leaflet's CSS -->