diff options
author | Frederick Muriuki Muriithi | 2021-09-22 06:48:32 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-09-22 06:48:32 +0300 |
commit | c40a425b29b9b72b4ca5b496c2983480b25dc7a7 (patch) | |
tree | de719c50d78f2da146a562631f5b4d721033346e /wqflask | |
parent | 98f9027b8ce8f33dda7f0b1b5495b22b4a450349 (diff) | |
download | genenetwork2-c40a425b29b9b72b4ca5b496c2983480b25dc7a7.tar.gz |
Cleanup code
Issue:
https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/clustering.gmi
* Remove unnecessary console.log(...) statements that were used in
development
* Re-arrange the html elements
* Rename element id
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/collections/view.html | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/wqflask/wqflask/templates/collections/view.html b/wqflask/wqflask/templates/collections/view.html index bca629a9..4378e4a6 100644 --- a/wqflask/wqflask/templates/collections/view.html +++ b/wqflask/wqflask/templates/collections/view.html @@ -36,6 +36,15 @@ <div> <br /> + <form id="heatmaps_form"> + <button id="clustered-heatmap" + class="btn btn-primary" + data-url="{{heatmap_data_url}}" + title="Generate heatmap from this collection"> + Clustered Heatmap + </button> + </form> + <div class="collection-table-options"> <form id="export_form" method="POST" action="/export_traits_csv"> <button class="btn btn-default" id="select_all" type="button"><span class="glyphicon glyphicon-ok"></span> Select All</button> @@ -51,15 +60,6 @@ <button id="remove" class="btn btn-danger" data-url="/collections/remove" type="button" disabled><i class="icon-minus-sign"></i> Delete Rows</button> <button id="delete" class="btn btn-danger submit_special" data-url="/collections/delete" title="Delete this collection" > Delete Collection</button> </form> - - <form id="heatmaps_form"> - <button id="clustered-heatmap" - class="btn btn-main" - data-url="{{heatmap_data_url}}" - title="Generate heatmap from this collection"> - Clustered Heatmap - </button> - </form> </div> <div style="margin-top: 10px; margin-bottom: 5px;"> <b>Show/Hide Columns:</b> @@ -128,8 +128,7 @@ </tbody> </table> - <div id="plotly-testing-area" - style="width:4000px;height:800px;"> + <div id="clustered-heatmap-image-area"> </div> </div> <br /> @@ -267,17 +266,15 @@ }); function generate_clustered_heatmap(heatmap_data) { - image_area = document.getElementById("plotly-testing-area") + image_area = document.getElementById("clustered-heatmap-image-area") Plotly.newPlot(image_area, heatmap_data) } $("#clustered-heatmap").on("click", function() { heatmap_url = $(this).attr("data-url") - console.log("heatmap url:", heatmap_url) traits = $(".trait_checkbox:checked").map(function() { return this.value }).get(); - console.log("SELECTED TRAITS", traits); $.ajax({ type: "POST", url: heatmap_url, |