From bc351bc9fc6a16a070376c46b6d24966079bc5f4 Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Wed, 17 Dec 2014 17:18:46 -0500 Subject: [PATCH] Removing unnecessary render step --- src/js/parser/javascript/node.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/js/parser/javascript/node.js b/src/js/parser/javascript/node.js index 62f4267..b7a0892 100644 --- a/src/js/parser/javascript/node.js +++ b/src/js/parser/javascript/node.js @@ -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()