diff options
author | zsloan | 2022-06-23 20:57:38 +0000 |
---|---|---|
committer | zsloan | 2022-06-23 20:57:38 +0000 |
commit | 8e9423e0cdf771fe9603a7c1968ceac34bd4a64a (patch) | |
tree | c7057e2ddd4e2ec91defda7e1ec438d8630e9f09 /wqflask | |
parent | ca368e32528073de15d925b4293b938f95f69dac (diff) | |
download | genenetwork2-8e9423e0cdf771fe9603a7c1968ceac34bd4a64a.tar.gz |
Add columnDefs as parameter for setUserColumnDefWidths
Now that the function is in a separate JS file it needs the parameter to
be directly provided
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/static/new/javascript/table_functions.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wqflask/wqflask/static/new/javascript/table_functions.js b/wqflask/wqflask/static/new/javascript/table_functions.js index 22732397..ea2cf60c 100644 --- a/wqflask/wqflask/static/new/javascript/table_functions.js +++ b/wqflask/wqflask/static/new/javascript/table_functions.js @@ -26,7 +26,7 @@ getCheckedRows = function(tableId){ return checkedRows } -function setUserColumnsDefWidths(tableId) { +function setUserColumnsDefWidths(tableId, columnDefs) { var userColumnDef; // Get the settings for this table from localStorage @@ -57,6 +57,8 @@ function setUserColumnsDefWidths(tableId) { }) } }); + + return columnDefs } function saveColumnSettings(tableId, traitTable) { |