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) {
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 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 bv = this._isVerticallyAligned(b.getSize(), b.getPosition(), sourcePosition);
@ -87,11 +87,11 @@ mindplot.DragConnector = new Class({
}.bind(this));
console.log("---- out ----");
topics.each(function (e) {
console.log(e.getText());
});
console.log("---- out ----");
// console.log("---- out ----");
// topics.each(function (e) {
// console.log(e.getText());
// });
// console.log("---- out ----");
return topics;

View File

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