Keanu Lee
Keanu Lee
Couldn't repro either; suspect the previous SW is caching an old version of the API viewer element so it doesn't know how to handle the new format.
We show the "Site updated, refresh to reload" toast, but you need to do a full page reload to get the new bundle. Clicking links on the same window _will...
(I'm assuming you're referring to the left sidebar for desktop, not mobile. Let me know if that's incorrect.) Currently, there is no JS controlling the links in the sidebar -...
There seems to be some discrepancy between the WPT timeline and Lighthouse numbers. I posted the Lighthouse numbers since that's what the other demos use. @addyosmani do you have any...
I would lean towards just baking `iron-list-selector` functionality right into `iron-list` if that's possible. Having different code paths to maintain hybrid compatibility would be acceptable.
Wasn't able to reproduce on macOS 10.14.4 with Node v10.14.2 and NPM 6.4.1. More details?
Made a branch for this at https://github.com/Polymer/shop/tree/async-img and deployed a test version to https://async-img-dot-polymer-shop.appspot.com/
Removing `noink` would be a breaking change, so in keeping with semver, it wouldn't be appropriate for a feature (1.1) release and would have to be a major (e.g. 2.0)...
@MajorBreakfast Calling `getBoundingClientRect()` on every frame seems expensive. A better way would be to install a scroll listener and then cancelling the ripple in there: ``` javascript document.addEventListener('scroll', function() {...
`PaperInkyFocusBehavior` is actually an array of behaviors, so there's no clean way of grabbing a reference to the right `_createRipple`. Also, since this is within a method called `_createRipple`, it's...