A couple if minor improvements.

This commit is contained in:
Paulo Gustavo Veiga
2011-04-18 23:59:13 -03:00
parent bb6c9702e2
commit e8cfa5163d
4 changed files with 9 additions and 9 deletions

View File

@@ -61,14 +61,14 @@ mindplot.CentralTopic.prototype.createChildModel = function(prepositionate)
this.___siblingDirection = 1;
}
// Positionate following taking into account this internal flag ...
// Position following taking into account this internal flag ...
if (this.___siblingDirection == 1)
{
childModel.setPosition(100, 0);
childModel.setPosition(150, 0);
} else
{
childModel.setPosition(-100, 0);
childModel.setPosition(-150, 0);
}
this.___siblingDirection = -this.___siblingDirection;
}