Fixed order of 'onRenderStop' and 'onRenderStop' parameters when calling this.layout.start().

This commit is contained in:
Jesse 2014-07-12 14:18:05 -04:00
parent 0a588deed6
commit b3145ce522

View File

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