From edf3c71957f26a59afcb23419adb7aceca478352 Mon Sep 17 00:00:00 2001 From: Steve Orvell Date: Thu, 17 Apr 2014 17:26:56 -0700 Subject: [PATCH] Wait on bind/shadowRoot reordering until https://github.com/Polymer/ShadowDOM/issues/420 is fixed. --- src/instance/base.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/instance/base.js b/src/instance/base.js index 3b7cacd..cff2df9 100644 --- a/src/instance/base.js +++ b/src/instance/base.js @@ -31,9 +31,11 @@ } this.created(); this.prepareElement(); - if (!this.ownerDocument.isStagingDocument) { + // TODO(sorvell): replace when ShadowDOMPolyfill issue is corrected + // https://github.com/Polymer/ShadowDOM/issues/420 + //if (!this.ownerDocument.isStagingDocument) { this.makeElementReady(); - } + //} }, // system entry point, do not override prepareElement: function() {