From 530704619eeebc70211abd189cb18f438e77bd90 Mon Sep 17 00:00:00 2001 From: ivanPozdnyakov Date: Fri, 29 Jan 2016 13:44:18 -0500 Subject: [PATCH] line type settings lowercase now --- VQI_PathwayEditorGUI.js | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/VQI_PathwayEditorGUI.js b/VQI_PathwayEditorGUI.js index 16143e5..db03b2d 100644 --- a/VQI_PathwayEditorGUI.js +++ b/VQI_PathwayEditorGUI.js @@ -185,18 +185,18 @@ var VQI_PathwayEditorGUI = function (parent) { strVar += "
"; strVar += "
"; strVar += "
"; strVar += "
"; @@ -1615,8 +1615,8 @@ var VQI_PathwayEditorGUI = function (parent) { function visualPathway(obj) { $('#' + parent + '-cy').cytoscape({ style: cytoscape.stylesheet() - // node elements default css (unselected state) - .selector('node').css({ + // node elements default css (unselected state) + .selector('node').css({ 'content': 'data(name)', 'padding-left': 2, 'padding-right': 2, @@ -1651,14 +1651,6 @@ var VQI_PathwayEditorGUI = function (parent) { 'border-style': 'solid', 'border-width': 1 }).selector('node[Type="geneproduct"]').css({ -// 'shape': 'ellipse', -// 'radius': 5, -// 'color': 'black', -// 'text-valign': 'center', -// 'background-color': 'white', -// 'border-color': 'black', -// 'border-style': 'solid', -// 'border-width': 1, 'shape': 'ellipse', 'width': 'data(Width)', 'height': 'data(Height)', @@ -1904,8 +1896,8 @@ var VQI_PathwayEditorGUI = function (parent) { 'border-width': 1 }) - // edge elements default css (unselected) - .selector('edge').css({ + // edge elements default css (unselected) + .selector('edge').css({ 'line-color': 'black', 'line-style': 'solid', 'opacity': 0.75,