diff options
author | zsloan | 2022-05-25 17:10:18 +0000 |
---|---|---|
committer | zsloan | 2022-05-25 17:11:27 +0000 |
commit | 4c1da58232632eb590d2a1830723e87b1d7bb638 (patch) | |
tree | 759414e3cf3cb2a0f8329847bbf24c0597541ffa | |
parent | 2b0fb660d26e11911b7f1888bf09dc5fa55d157f (diff) | |
download | genenetwork2-4c1da58232632eb590d2a1830723e87b1d7bb638.tar.gz |
Add 'submit' class to Submit button when selecting cofactors
This was mistakenly removed with a recent change and caused cofactors
selection to stop working
-rw-r--r-- | wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js | 2 |
1 files changed, 1 insertions, 1 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 9e81e264..fd14bb2b 100644 --- a/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js +++ b/wqflask/wqflask/static/new/javascript/get_covariates_from_collection.js @@ -210,7 +210,7 @@ process_traits = function(trait_data, textStatus, jqXHR) { var the_html, trait, _i, _len; 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 += " <button id='submit' class='btn btn-primary btn-small submit'> 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>"; |