We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26e55b commit 2f4c57bCopy full SHA for 2f4c57b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "graph-creator",
3
- "version": "0.9.1",
+ "version": "0.9.2",
4
"main": "index.html",
5
"window": {
6
"height": 1024,
src/cytoInit.js
@@ -41,6 +41,9 @@ function renderGraph(img){
41
if(img != null){
42
$('#container').css('background-image', 'url(' + img.src + ')');
43
}
44
+ else{
45
+ $('#container').css('background-image', 'none');
46
+ }
47
48
//Bind our event handlers
49
cy.on('tap', 'edge', removeEdge);
0 commit comments