Russell Bicknell
Russell Bicknell
After mulling this over a bit, I'm not sure that what I've done in these PRs makes sense. If it's true that iron-meta 2 doesn't work in Polymer 1 with...
It seems like this is a result of the default focus behavior: http://output.jsbin.com/duzipo
[`scrollIntoView`](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView) seems like it would help here. The general lack of `scrollIntoViewOptions` support is lame though.
`selector.select(undefined)` should do it. There's kind of a mismatch between IronSelectableBehavior and IronMultiSelectable behavior though: `.select(undefined)` for a multi-selectable will actually push `undefined` to `selectedValues`. :/
Calling this p2 just because there's a pretty straight-forward workaround but this is staying open / should be kept in mind when we get to the point that we can...
Hi @jpodwys, have you considered listening for the down key and setting the selected item to the first when the user pushes that? I think that's the typical way to...
Hi, I'm setting the base branch of this PR to `master` so that we can delete `__auto_generated_3.0_preview`.
https://github.com/PolymerElements/paper-card/blob/85958cbba0593b92427d8582baf86c6aaf6868ae/paper-card.html#L152 @notwaldorf, in your example `placeholder` and `preload` attributes should be `placeholder-image` and `preload-image`: ```html Sample content ``` -> ```html Sample content ``` @togonow, in your [linked gist](https://gist.github.com/togonow/925d9ddb3dd6ba0e33b363bd2289de1f) you're camel-casing...
Check out the comments in #50. The iron-image in paper-card is meant to cover a pretty basic use case: full width with the aspect ratio maintained. The `--paper-card-header-image` mixin is...
Have you looked at [paper-material](https://github.com/PolymerElements/paper-material)? It's used by paper-card to match up with the Material Design spec for container elements ([just box-shadow](https://github.com/PolymerElements/paper-styles/blob/master/shadow.html), lul). I think you're right about the image's...