From 0c3595bcba647e475c67ff6c25ca7e3d42950abf Mon Sep 17 00:00:00 2001 From: amnona Date: Tue, 27 Jul 2021 14:55:50 +0300 Subject: [PATCH] feat: support https on the exported heatmap (#256) --- calour/export_html_template.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/calour/export_html_template.html b/calour/export_html_template.html index 75743728..83875123 100644 --- a/calour/export_html_template.html +++ b/calour/export_html_template.html @@ -472,7 +472,7 @@ $('#sequence').html(cid); // Get dbBact annotations for selection $.ajax({ - url: 'http://api.dbbact.org/sequences/get_string_annotations', + url: 'https://api.dbbact.org/sequences/get_string_annotations', type: 'POST', data: JSON.stringify({'sequence': cid}), dataType: 'json', @@ -483,11 +483,11 @@ } else { var atext = ''; - var clink = 'http://dbbact.org/sequence_annotations/' + cid; + var clink = 'https://dbbact.org/sequence_annotations/' + cid; var ctext = '

dbBact Summary

'; atext += ctext; for (i = 0; i < data.annotations.length; i++) { - clink = 'http://dbbact.org/annotation_info/' + data.annotations[i].annotationid.toString(); + clink = 'https://dbbact.org/annotation_info/' + data.annotations[i].annotationid.toString(); ctext = '' + data.annotations[i].annotation_string + '
'; atext += ctext; }