weird part with rebase animation

This commit is contained in:
Peter Cottle 2012-09-30 14:57:49 -07:00
parent 01b9b1132d
commit 1bbdb5d6a0
4 changed files with 80 additions and 6 deletions

View file

@ -430,6 +430,11 @@ var VisNode = Backbone.Model.extend({
});
},
setBirth: function() {
this.setBirthPosition();
this.setOutgoingEdgesBirthPosition();
},
animateOutgoingEdges: function(speed, easing) {
_.each(this.get('outgoingEdges'), function(edge) {
edge.animateUpdatedPath(speed, easing);