diff options
author | Frederick Muriuki Muriithi | 2021-09-23 04:09:13 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2021-09-23 04:09:13 +0300 |
commit | 1ef632d1b455e9c78b0c40caab1686b8c5ad80bf (patch) | |
tree | eb6f4aad13bb20fec2c8e043107cdb36771d6ebc /wqflask | |
parent | c40a425b29b9b72b4ca5b496c2983480b25dc7a7 (diff) | |
download | genenetwork2-1ef632d1b455e9c78b0c40caab1686b8c5ad80bf.tar.gz |
Move the heatmap display area to before the table
Issue:
https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/clustering.gmi
* Move the heatmap area to before the data table, so that once the
heatmap is generated, it shows up before the table, and the user is
able to see what happened.
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/collections/view.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/collections/view.html b/wqflask/wqflask/templates/collections/view.html index 4378e4a6..a034f628 100644 --- a/wqflask/wqflask/templates/collections/view.html +++ b/wqflask/wqflask/templates/collections/view.html @@ -61,6 +61,8 @@ <button id="delete" class="btn btn-danger submit_special" data-url="/collections/delete" title="Delete this collection" > Delete Collection</button> </form> </div> + <div id="clustered-heatmap-image-area"> + </div> <div style="margin-top: 10px; margin-bottom: 5px;"> <b>Show/Hide Columns:</b> </div> @@ -128,8 +130,6 @@ </tbody> </table> - <div id="clustered-heatmap-image-area"> - </div> </div> <br /> </div> |