How did
chromestatus.com lazyload it's element(s) for `use metrics`? When I click on `use metrics`, I see in the network tab that only then it is loaded and stamped...not when the app loads.
Originally, I thought `lazyRegister: max` took care of this automatically. But in my set up:
<iron-pages attr-for-selected="data-route" selected="{{route}}">
<user-login data-route="user-login"></user-login>
<single-listing data-route="single-listing"></single-listing>
</iron-pages>
Element `single-listing` element loads when the app initially loads, even when I have window.Polymer = { lazyRegister: 'max' }
Is possible to see the code of chromestatus to see how they lazyloaded their element? And is the behavior even possible with iron-pages?