diff --git a/mindplot/src/main/javascript/ConnectionLine.js b/mindplot/src/main/javascript/ConnectionLine.js index 5513e8b0..5bb621fc 100644 --- a/mindplot/src/main/javascript/ConnectionLine.js +++ b/mindplot/src/main/javascript/ConnectionLine.js @@ -65,7 +65,7 @@ mindplot.ConnectionLine.prototype._createLine = function(lineType, defaultStyle) break; } return line; -} +}; mindplot.ConnectionLine.getStrokeColor = function() { diff --git a/mindplot/src/main/javascript/RelationshipLine.js b/mindplot/src/main/javascript/RelationshipLine.js index 4b09cbd7..ec5911ec 100644 --- a/mindplot/src/main/javascript/RelationshipLine.js +++ b/mindplot/src/main/javascript/RelationshipLine.js @@ -29,18 +29,24 @@ mindplot.RelationshipLine = function(sourceNode, targetNode, lineType) this._isInWorkspace = false; this._controlPointsController = new mindplot.ControlPoint(); - var strokeColor = mindplot.ConnectionLine.getStrokeColor.call(this); + var strokeColor = mindplot.RelationshipLine.getStrokeColor(); this._startArrow = new web2d.Arrow(); this._endArrow = new web2d.Arrow(); this._startArrow.setStrokeColor(strokeColor); this._startArrow.setStrokeWidth(2); this._endArrow.setStrokeColor(strokeColor); this._endArrow.setStrokeWidth(2); + this._line2d.setStroke(1, 'solid', strokeColor); }; objects.extend(mindplot.RelationshipLine, mindplot.ConnectionLine); +mindplot.RelationshipLine.getStrokeColor = function() +{ + return '#9b74e6'; +}; + mindplot.RelationshipLine.prototype.setStroke = function(color, style, opacity) { mindplot.RelationshipLine.superClass.setStroke.call(this, color, style, opacity);