aboutsummaryrefslogtreecommitdiff
path: root/templates/cytoscape.html
diff options
context:
space:
mode:
authorgunturkunhakan2021-05-18 22:39:49 -0500
committergunturkunhakan2021-05-18 22:39:49 -0500
commit6235fb58955e2bc193d6ce40a4d74b33ab47dfce (patch)
tree557418e4f22e608a6c45ee220c02d47ca49510e0 /templates/cytoscape.html
parenta637889f13c2151303998e411dc81f3196a974f6 (diff)
downloadgenecup-6235fb58955e2bc193d6ce40a4d74b33ab47dfce.tar.gz
Welcome to GeneCup
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});