From af4597711fe96a2146ef4aa83273f7e71e11740d Mon Sep 17 00:00:00 2001 From: Ivan Pozdnyakov Date: Tue, 13 Oct 2015 14:14:11 -0400 Subject: [PATCH] added an unknown class of node --- VQI_PathwayEditor.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/VQI_PathwayEditor.js b/VQI_PathwayEditor.js index b260a14..8ac782f 100644 --- a/VQI_PathwayEditor.js +++ b/VQI_PathwayEditor.js @@ -529,8 +529,15 @@ var VQI_PathwayEditor = function(parent) { 'border-color' : '#ff3333', 'border-style' : 'solid', 'border-width' : 1 + }).selector('node[Type="unknown"]').css({ + 'shape' : 'rectangle', + 'background-color' : 'white', + 'color' : 'white', + 'border-color' : 'black', + 'border-style' : 'solid', + 'border-width' : 1 }).selector('node[Type="bundle_type_1"]').css({ - 'shape' : 'hexagon', + 'shape' : 'rectangle', 'background-color' : 'white', 'color' : 'white', 'border-color' : 'black',