-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[0.8] body unresolved broken #1271
Comments
In webcomponents/webcomponentsjs#230 I've proposed a workaround which solved that issue for me. But it was classified as not being ok. |
Running into this too |
Confirmed that I've been bitten by this too, but I agree with @garlicnation's resolution on that bug. It's fine for the framework or user to remove the unresolved attribute at a time they consider the page ready. |
I've a page with several components. I've no problem to remove unresolved myself - but how do I know that all components are ready and won't cause any FOUC? |
@addyosmani, |
I ran into this, too. window.addEventListener("polymer-ready", function() {
console.log("Event broken?");
}, false); |
Id would be best if the |
To prevent FOUC we used, as suggested,
<body unresolved>
. webcomponents.js always define the style for unresolved - so the body still gets hidden.But it seems that in 0.8 the
unresolved
is never removed from body.If I don't use unresolved I see the page but again get FOUC in FF & IE.
The text was updated successfully, but these errors were encountered: