Removing unnecessary render step

This commit is contained in:
Jeff Avallone 2014-12-17 17:18:46 -05:00
parent 17a95392a8
commit bc351bc9fc
1 changed files with 1 additions and 2 deletions

View File

@ -125,8 +125,7 @@ export default class Node {
}
if (this.proxy) {
return this.proxy.render(this.container)
.then(_.constant(this));
return this.proxy.render(this.container);
} else {
this.startRender();
return this._render()