Sometimes it takes a while for polymer to load, and when using , the page stays blank until everything is ready. Is there a way to displa
The documentation that describes the unresolved attribute clears some of this up.
While it's common to apply Here's an example using a very contrived way of slowing down the time it takes for the Polymer element to complete one of its lifecycle methods (live demo): Loading... (By the way, what are you finding to be slow-loading? If it's a standard/core element, it might be worth filing a bug against the corresponding project on GitHub.)unresolved to the element, causing the entirety of your page's content to be hidden until Polymer is ready, it can be applied to any element(s). You can, for instance, use polymer-ready event and hide your loading message when that's fired.)