diff options
author | BonfaceKilz | 2020-04-25 19:40:56 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-04-25 19:40:56 +0300 |
commit | 686958488357f7dab385c2a62405a49b2cb15dfa (patch) | |
tree | 923445672725ca296900bf0caf0a0472e06b24d3 /bh20simplewebuploader/templates | |
parent | 414a8028638039d4113e099455c0a7f929ff0b68 (diff) | |
download | bh20-seq-resource-686958488357f7dab385c2a62405a49b2cb15dfa.tar.gz bh20-seq-resource-686958488357f7dab385c2a62405a49b2cb15dfa.tar.lz bh20-seq-resource-686958488357f7dab385c2a62405a49b2cb15dfa.zip |
Put JS code in its own JS file
Diffstat (limited to 'bh20simplewebuploader/templates')
-rw-r--r-- | bh20simplewebuploader/templates/form.html | 39 |
1 files changed, 2 insertions, 37 deletions
diff --git a/bh20simplewebuploader/templates/form.html b/bh20simplewebuploader/templates/form.html index 9c272a0..7b1fd98 100644 --- a/bh20simplewebuploader/templates/form.html +++ b/bh20simplewebuploader/templates/form.html @@ -151,43 +151,8 @@ <script type="text/javascript"> let scriptRoot = {{ request.script_root|tojson|safe }}; - let r = new XMLHttpRequest(); - let test; - r.open("GET", scriptRoot + "/api/getAllaccessions", true); - r.onreadystatechange = function () { - if (r.readyState != 4 || r.status != 200) return; - test = r.responseText; - console.log(JSON.parse(test)); - }; - r.send(); - let uploadForm = document.getElementById('metadata_upload_form') - let uploadFormSpot = document.getElementById('metadata_upload_form_spot') - let fillForm = document.getElementById('metadata_fill_form') - let fillFormSpot = document.getElementById('metadata_fill_form_spot') - - function setUploadMode() { - // Make the upload form the one in use - uploadFormSpot.appendChild(uploadForm) - fillFormSpot.removeChild(fillForm) - } - - function setFillMode() { - // Make the fillable form the one in use - uploadFormSpot.removeChild(uploadForm) - fillFormSpot.appendChild(fillForm) - } - - function setMode() { - // Pick mode based on radio - if (document.getElementById('metadata_upload').checked) { - setUploadMode() - } else { - setFillMode() - } - } - - // Start in mode appropriate to selected form item - setMode() </script> + +<script type="text/javascript" src="/static/main.js"></script> </body> </html> |