diff options
author | zsloan | 2020-11-11 12:58:17 -0600 |
---|---|---|
committer | zsloan | 2020-11-11 12:58:17 -0600 |
commit | e20d5f41d076659706442a8ab1db93cd65c9cb0f (patch) | |
tree | 75a657f4734ec72607572e877ab25dfe50a23342 | |
parent | 486b30324d67971f9fa9e741cf1c7f24d286dad2 (diff) | |
download | genenetwork2-e20d5f41d076659706442a8ab1db93cd65c9cb0f.tar.gz |
Changed some column widths and removed the width for description so it can vary with page width
-rw-r--r-- | wqflask/wqflask/templates/correlation_page.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/wqflask/wqflask/templates/correlation_page.html b/wqflask/wqflask/templates/correlation_page.html index 2b79770a..bb7d3df6 100644 --- a/wqflask/wqflask/templates/correlation_page.html +++ b/wqflask/wqflask/templates/correlation_page.html @@ -396,20 +396,19 @@ { 'title': "Abbreviation", 'type': "natural", - 'width': "500px", + 'width': "200px", 'data': null, 'render': function(data, type, row, meta) { try { - return decodeURIComponent(escape(data.abbreviation)) + return decodeURIComponent(escape(data.abbreviation_display)) } catch(err){ - return data.abbreviation + return data.abbreviation_display } } }, { 'title': "Description", 'type': "natural", - 'width': "500px", 'data': null, 'render': function(data, type, row, meta) { try { @@ -422,7 +421,7 @@ { 'title': "Authors", 'type': "natural", - 'width': "500px", + 'width': "400px", 'data': null, 'render': function(data, type, row, meta) { try { |