diff options
author | zsloan | 2021-08-19 18:34:23 +0000 |
---|---|---|
committer | zsloan | 2021-08-19 18:38:54 +0000 |
commit | aaf28e6b2dc61469fa06816655208c0fc616f2e8 (patch) | |
tree | 8fbd32d3f3aa8446b0a6fd500827a659df55c143 | |
parent | 0e0f25a71d2fab7395af007643b908af51bd7ca2 (diff) | |
download | genenetwork2-aaf28e6b2dc61469fa06816655208c0fc616f2e8.tar.gz |
Change color for Submit button when selecting covariates + move Back button to the far right
-rw-r--r-- | wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js | 5 |
1 files changed, 2 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 9aa9553c..00025a32 100644 --- a/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js +++ b/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js @@ -209,9 +209,8 @@ 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 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 class='btn btn-primary btn-small submit'> Submit </button>"; + 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 += "<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>"; |