diff options
author | zsloan | 2022-05-17 17:54:25 +0000 |
---|---|---|
committer | zsloan | 2022-05-17 17:55:32 +0000 |
commit | 23dd7bdc6c318b580172ab00930da166a2efa76a (patch) | |
tree | 003c0bcb9a58c86b1707e66a2e30ed526af72d06 | |
parent | f420d06d611fe6f219d64e400dc15cc93e4a3084 (diff) | |
download | genenetwork2-23dd7bdc6c318b580172ab00930da166a2efa76a.tar.gz |
Change collection table in get_covariates_from_collection to be the same as in get_traits_from_collection.js
-rw-r--r-- | wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js b/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js index 00025a32..9e81e264 100644 --- a/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js +++ b/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js @@ -208,9 +208,9 @@ color_by_trait = function(trait_sample_data, textStatus, jqXHR) { process_traits = function(trait_data, textStatus, jqXHR) { var the_html, trait, _i, _len; - console.log('in process_traits with trait_data:', trait_data); - the_html = "<button class='btn btn-success btn-small submit'> Submit </button>"; - the_html += "<button id='back_to_collections' class='btn btn-inverse btn-small' style='float: right;'>Back</button>"; + the_html = "<button id='back_to_collections' class='btn btn-inverse btn-small'>"; + the_html += "<i class='icon-white icon-arrow-left'></i> Back </button>"; + the_html += " <button id='submit' class='btn btn-primary btn-small'> Submit </button>"; the_html += "<table id='collection_table' style='padding-top: 10px;' class='table table-hover'>"; the_html += "<thead><tr><th></th><th>Record</th><th>Data Set</th><th>Description</th></tr></thead>"; the_html += "<tbody>"; |