Emmanuel Garcia
Emmanuel Garcia
@jshcrowthe That looks pretty good. One thing I'd suggest though is moving that code to a demo instead of adding to the element itself if you would like to send...
I agree it's a missing feature.
yes, it could use `item.getBoundingClientRect().height` in https://github.com/PolymerElements/iron-list/blob/master/iron-list.html#L1241 similar to L1239.
I am aware of this issue, but it shouldn't cause "gaps" as in empty viewport. There's detection to deal with that. It would be great to get a repro jsbin.
This one is related to https://bugs.chromium.org/p/chromium/issues/detail?id=667925
The issue is confirmed. This happens because the physical items aren't detached from the DOM.
@esprehn when you switch tabs, the browser automatically focuses the last active element, but I do agree that it feels odd. e.g. try focusing an icon then open a new...
I see, I think the list should handle this use case a little better for you. It seems like there's async work waiting to complete. Can you try: `Polymer.dom.flush()` right...
Yeah the `Polymer.dom.flush()` needs to run after firing `iron-resize`. I'm not sure why it's so slow though, can you still repro the same issue without `Polymer.dom.flush()`?
It seems like the element that handles scroll events needs a size. Did you set a height to the `` element? If you are using a custom scroll target, that...