More fixes on connection predict.

This commit is contained in:
Paulo Gustavo Veiga 2012-08-18 23:37:32 -03:00
parent 04fda82ba0
commit eb709699b7
2 changed files with 9 additions and 9 deletions

View File

@ -75,10 +75,10 @@ mindplot.DragConnector = new Class({
// //
topics = topics.sort(function (a, b) { topics = topics.sort(function (a, b) {
var aPos = a.getPosition(); var aPos = a.getPosition();
var ad = (sourcePosition.x - aPos.x) * Math.sign(aPos.x); var ad = (aPos.x - sourcePosition.x) * Math.sign(aPos.x);
var bPos = b.getPosition(); var bPos = b.getPosition();
var bd = (sourcePosition.x - bPos.x) * Math.sign(bPos.x); var bd = ( bPos.x - sourcePosition.x) * Math.sign(bPos.x);
var av = this._isVerticallyAligned(a.getSize(), a.getPosition(), sourcePosition); var av = this._isVerticallyAligned(a.getSize(), a.getPosition(), sourcePosition);
var bv = this._isVerticallyAligned(b.getSize(), b.getPosition(), sourcePosition); var bv = this._isVerticallyAligned(b.getSize(), b.getPosition(), sourcePosition);
@ -87,11 +87,11 @@ mindplot.DragConnector = new Class({
}.bind(this)); }.bind(this));
console.log("---- out ----"); // console.log("---- out ----");
topics.each(function (e) { // topics.each(function (e) {
console.log(e.getText()); // console.log(e.getText());
}); // });
console.log("---- out ----"); // console.log("---- out ----");
return topics; return topics;

View File

@ -97,7 +97,7 @@ mindplot.layout.SymmetricSorter = new Class({
var position = { var position = {
x: parentChild.getPosition().x, x: parentChild.getPosition().x,
y: parentChild.getPosition().y + parentChild.getSize().height + mindplot.layout.SymmetricSorter.INTERNODE_VERTICAL_PADDING * 2 y: parentChild.getPosition().y + parentChild.getSize().height + mindplot.layout.SymmetricSorter.INTERNODE_VERTICAL_PADDING * 2
} };
return [order, position]; return [order, position];
} }
@ -111,7 +111,7 @@ mindplot.layout.SymmetricSorter = new Class({
var position = { var position = {
x: parentChild.getPosition().x, x: parentChild.getPosition().x,
y: parentChild.getPosition().y + (nodeAfter.getPosition().y - parentChild.getPosition().y) / 2 y: parentChild.getPosition().y + (nodeAfter.getPosition().y - parentChild.getPosition().y) / 2
} };
return [order, position]; return [order, position];
} }