From 8f8ecc197191e24d48b9285b4dde19aab3f38148 Mon Sep 17 00:00:00 2001 From: Steve Orvell Date: Thu, 17 Jul 2014 17:59:04 -0700 Subject: [PATCH] Fixes https://github.com/Polymer/polymer-dev/issues/52 --- src/instance/base.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/instance/base.js b/src/instance/base.js index 8a4d8b5..9e60645 100644 --- a/src/instance/base.js +++ b/src/instance/base.js @@ -35,9 +35,7 @@ } this.created(); this.prepareElement(); - // TODO(sorvell): replace when ShadowDOMPolyfill issue is corrected - // https://github.com/Polymer/ShadowDOM/issues/420 - if (!this.ownerDocument.isStagingDocument || window.ShadowDOMPolyfill) { + if (!this.ownerDocument.isStagingDocument) { this.makeElementReady(); } },