Merge pull request #65 from Irrational86/master

Fixed order of 'onRenderStop' and 'onRenderStart' parameters when calling this.layout.start()
This commit is contained in:
Dennis Hotson 2014-07-18 11:33:30 +10:00
commit db74df106c

View File

@ -677,7 +677,7 @@
t.layout.eachNode(function(node, point) {
t.drawNode(node, point.p);
});
}, this.onRenderStart, this.onRenderStop);
}, this.onRenderStop, this.onRenderStart);
};
Renderer.prototype.stop = function() {