diff options
author | zsloan | 2020-07-15 12:28:55 -0500 |
---|---|---|
committer | zsloan | 2020-07-15 12:28:55 -0500 |
commit | b47c588cab6742af3aeeaceb603aff0d7b178116 (patch) | |
tree | 50495d8adfe33833506eea977eef47eca86e0356 | |
parent | 05e82353739c2abea6adcfd0036086dc79cee659 (diff) | |
download | genenetwork2-b47c588cab6742af3aeeaceb603aff0d7b178116.tar.gz |
decodeURIComponent was throwing an error after the query-level fix to the unicode issue, so I removed it
-rw-r--r-- | wqflask/wqflask/templates/correlation_page.html | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/wqflask/wqflask/templates/correlation_page.html b/wqflask/wqflask/templates/correlation_page.html index 3d750bea..df3e43f1 100644 --- a/wqflask/wqflask/templates/correlation_page.html +++ b/wqflask/wqflask/templates/correlation_page.html @@ -200,7 +200,7 @@ {% endblock %} {% block js %} - <!--<script type="text/javascript" src="/static/new/js_external/md5.min.js"></script>--> + <script type="text/javascript" src="/static/new/js_external/md5.min.js"></script> <script type="text/javascript" src="/static/new/javascript/search_results.js"></script> <script language="javascript" type="text/javascript" src="/static/new/js_external/jszip.min.js"></script> @@ -427,10 +427,6 @@ { "type": "natural" }, { "type": "natural" } ], - "createdRow": function ( row, data, index ) { - $('td', row).eq(4).text(decodeURIComponent(escape($('td', row).eq(4).text()))); - $('td', row).eq(5).text(decodeURIComponent(escape($('td', row).eq(5).text()))); - }, "order": [[9, "asc" ]], "sDom": "Btir", "iDisplayLength": -1, |