diff options
author | zsloan | 2020-07-15 12:28:55 -0500 |
---|---|---|
committer | BonfaceKilz | 2020-07-24 03:46:26 +0300 |
commit | 97d5ba1edde511133c5483bd41b5903a089d3c7e (patch) | |
tree | 60b1bd55f1709e66134732de3c655a4365f95c47 /wqflask | |
parent | 55221dca1c1adb6559957262cac21b023dfa11e7 (diff) | |
download | genenetwork2-97d5ba1edde511133c5483bd41b5903a089d3c7e.tar.gz |
decodeURIComponent was throwing an error after the query-level fix to the unicode issue, so I removed it
Diffstat (limited to 'wqflask')
-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, |