You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This boils down to polyfilling :unresolved in some way.
Since this is difficult, in general, perhaps we can at least provide an .unresolved class which can be manually put on elements. Then polymer can remove it. Polymer would provide a default implementation of unresolved that makes the element opacity: 0.
The text was updated successfully, but these errors were encountered:
- styling is now expressed via 'polymer-veiled' and 'polymer-unveil' classes which are now user customizable.
- to veil (initially hide) an element either include the class 'polymer-veiled' or add to the array: Polymer.veiledElements. This list includes 'body' by default but that can be removed to prevent body from getting de-fuoc'd.
- note: Polymer automatically unveils elements at WebComponentsReady time, but elements can be dynamically unveiled by (1) adding the polymer-veiled class to them to hide them and then (2) when they are ready, calling Polymer.unveilElements().
This boils down to polyfilling :unresolved in some way.
Since this is difficult, in general, perhaps we can at least provide an .unresolved class which can be manually put on elements. Then polymer can remove it. Polymer would provide a default implementation of unresolved that makes the element opacity: 0.
The text was updated successfully, but these errors were encountered: