diff options
author | zsloan | 2022-06-23 20:56:24 +0000 |
---|---|---|
committer | zsloan | 2022-06-23 20:56:24 +0000 |
commit | 0ddd74a4d417389f7a35ac0971b0c17f5d79fb56 (patch) | |
tree | 7990fcc917242e4b6469f7d917bef23f4df1fcf2 /wqflask | |
parent | d5c6bb7abfb3535c1fa5d0d8df95645a213ab030 (diff) | |
download | genenetwork2-0ddd74a4d417389f7a35ac0971b0c17f5d79fb56.tar.gz |
Change some variables in search_result_page.html to camelCase
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/search_result_page.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 8eaf5f91..fb7f404b 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -392,7 +392,7 @@ function loadDataTable(first_run=false){ if (!first_run){ - setUserColumnsDefWidths(tableId); + setUserColumnsDefWidths(tableId, columnDefs); } //ZS: Need to make sort by symbol, also need to make sure blank symbol fields at the bottom and symbols starting with numbers below letters @@ -487,7 +487,7 @@ if (!first_run){ $('#table_container').css("width", String($('#trait_table').width() + width_change {% if trait_list|length > 20 %}+ 17{% endif %}) + "px"); //ZS : Change the container width by the change in width of the adjusted column, so the overall table size adjusts properly - let checked_rows = get_checked_rows(tableId); + let checked_rows = getCheckedRows(tableId); trait_table = $('#' + tableId).DataTable(table_settings); if (checked_rows.length > 0){ recheck_rows(trait_table, checked_rows); |