diff options
author | christian | 2016-08-03 16:28:58 +0200 |
---|---|---|
committer | christian | 2016-08-03 16:28:58 +0200 |
commit | 5ea6eb6ad7c529dcf8f2a9b24f6186f8571341a1 (patch) | |
tree | ff29d23daec2d7499c9258000bab388811b5451c | |
parent | 5cd0e91c1de07b8932d0ff973660607605122bcc (diff) | |
download | genenetwork2-5ea6eb6ad7c529dcf8f2a9b24f6186f8571341a1.tar.gz |
Return to full view button in vector map view
-rw-r--r-- | wqflask/wqflask/templates/marker_regression_gn1.html | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/marker_regression_gn1.html b/wqflask/wqflask/templates/marker_regression_gn1.html index 978ea55f..2fb2a36d 100644 --- a/wqflask/wqflask/templates/marker_regression_gn1.html +++ b/wqflask/wqflask/templates/marker_regression_gn1.html @@ -160,8 +160,19 @@ </div> {% if mapping_method != "gemma" %} <div class="tab-pane {% if mapping_method == "gemma" %}active{% endif %}" id="vector_map"> - <div id="chart_container"> - <div class="qtlcharts" id="topchart"></div> + <div id="chart_container"> + <div id="return_to_full_view"> + Return to full view + </div> + + <div id="open_bd"> + Open BioDalliance view + </div> + + <div class="qtlcharts" id="topchart"></div> + + <div id="bd_container" class="qtlcharts"> + </div> </div> </div> {% endif %} @@ -319,6 +330,10 @@ $('div#gn1_map_options').show(); }); + $('#open_bd').click(function() { + console.log($('#topchart').contents()); + }) + }); chrView = function(this_chr, chr_mb_list) { |