aboutsummaryrefslogtreecommitdiff
path: root/templates/cytoscape.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/cytoscape.html')
-rw-r--r--templates/cytoscape.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/cytoscape.html b/templates/cytoscape.html
index 7a62f1a..aa85ca0 100644
--- a/templates/cytoscape.html
+++ b/templates/cytoscape.html
@@ -1,7 +1,7 @@
{% extends "layout.html" %}
{% block content %}
-<script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.6.0/cytoscape.min.js" integrity="sha256-uZV2wRlscgr52q3Wb3Oew0rKCPsM3g4aBTv46sF4qzg=" crossorigin="anonymous"></script>
+<script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.17.1/cytoscape.min.js" integrity="sha256-uZV2wRlscgr52q3Wb3Oew0rKCPsM3g4aBTv46sF4qzg=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/cytoscape/dist/cytoscape.min.js"></script>
<script src="https://unpkg.com/file-saver@1.3.8/FileSaver.js"></script>
<script src="https://unpkg.com/cytoscape-svg/cytoscape-svg.js"></script>
@@ -13,7 +13,6 @@
</div>
<div class="column right">
-
{{ message2 |safe}}
<br>
<br>
@@ -112,7 +111,7 @@
var saveAsSvg = function(filename) {
var svgContent = cy.svg();
var blob = new Blob([svgContent], {type:"image/svg+xml;charset=utf-8"});
- saveAs(blob, "ratspub_graph.svg");
+ saveAs(blob, "genecup_graph.svg");
};
var getSvgUrl = function() {
var svgContent = cy.svg({scale: 1, full: true});