diff options
author | Frederick Muriuki Muriithi | 2022-01-03 13:01:15 +0300 |
---|---|---|
committer | zsloan | 2022-01-29 00:42:44 -0600 |
commit | b054be4025c74cb574ed035ac99a15ccf010005d (patch) | |
tree | f984a2dd571523287f88c8bb92d1f8a9a03f09ce /wqflask | |
parent | bfc3d9483ec97c8ed70034f2de4a3ec414e402b4 (diff) | |
download | genenetwork2-b054be4025c74cb574ed035ac99a15ccf010005d.tar.gz |
Hide template row instead of deleting it
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/static/new/javascript/partial_correlations.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/wqflask/static/new/javascript/partial_correlations.js b/wqflask/wqflask/static/new/javascript/partial_correlations.js index dea4c675..1768b4b9 100644 --- a/wqflask/wqflask/static/new/javascript/partial_correlations.js +++ b/wqflask/wqflask/static/new/javascript/partial_correlations.js @@ -205,7 +205,8 @@ function display_probeset_results(primary, controls, correlations) { ).innerHTML = format_number(item["tissue_p_value"]); table_body.appendChild(new_row); }); - table_body.removeChild(template_row); + template_row.setAttribute("display", "none"); + /*table_body.removeChild(template_row);*/ } function display_partial_corr_results(data, status, xhr) { |