aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2020-01-17 15:37:53 -0600
committerzsloan2020-01-17 15:37:53 -0600
commit743354583a8cac92ab1a7ffec60fc91e65970173 (patch)
tree430d1f20561d219876fd0b9e5ed5f4ee6746a891 /wqflask
parent189a60eca4b1f5156d7bf6a64b9c443d48ab6991 (diff)
downloadgenenetwork2-743354583a8cac92ab1a7ffec60fc91e65970173.tar.gz
Fixed issue that caused mapping export to not work
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/templates/mapping_results.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/mapping_results.html b/wqflask/wqflask/templates/mapping_results.html
index 8422b1d2..0decbb54 100644
--- a/wqflask/wqflask/templates/mapping_results.html
+++ b/wqflask/wqflask/templates/mapping_results.html
@@ -65,7 +65,7 @@
{% endif %}
<br>
<br>
- <a href="javascript:export_mapping_results();" target="_blank" >Download Full Results</a>
+ <a id="export_mapping_results" href="#" target="_blank" >Download Full Results</a>
</div>
<div id="gn1_map_options" class="col-xs-5" style="outline: 3px double #AAAAAA; padding: 10px; margin: 10px;">
<div class="col-xs-8" style="padding: 0px;">
@@ -514,6 +514,8 @@
return $('#marker_regression_form').submit();
}
+ $('#export_mapping_results').click(export_mapping_results);
+
$('#browser_tab').click(function() {
$('#gn1_map_options').css("display", "none")
})