From c4858265b15e8ec800867d2251e64183c56ab952 Mon Sep 17 00:00:00 2001 From: Pablo Luna Date: Mon, 24 Jan 2011 13:18:14 -0300 Subject: [PATCH] Changing relationship line default color --- mindplot/src/main/javascript/ConnectionLine.js | 2 +- mindplot/src/main/javascript/RelationshipLine.js | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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);