- Minor improvement on relationship. Show arrow.

This commit is contained in:
Paulo Gustavo Veiga
2012-09-04 23:29:24 -03:00
parent a86a38d157
commit 9a94326469
3 changed files with 24 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ mindplot.ConnectionLine = new Class({
initialize:function (sourceNode, targetNode, lineType) {
$assert(targetNode, 'parentNode node can not be null');
$assert(sourceNode, 'childNode node can not be null');
$assert(sourceNode != targetNode, 'Cilcular connection');
$assert(sourceNode != targetNode, 'Circular connection');
this._targetTopic = targetNode;
this._sourceTopic = sourceNode;