-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Guidance for updating to the 2.0 version #50
Comments
Hm, changing I guess the best way to emulate this would be to create a new property |
My first gambit of just changing all |
/cc @cdata |
/cc @bicknellr |
Generally, I've found that most updates to hybrid end up looking like this: before:
after:
|
I'm taking a look at updating some usages of this element to the 2.0 version inside google and here are my notes so far:
<iron-meta-query>
is gone, but its API looks very similar to<iron-meta>
. Was it just a read-only way of accessing<iron-meta>
? Is the solution to change users of<iron-meta-query>
to just do one-directional binding of an<iron-meta>
instance?new Polymer.IronMeta(...)
used to give you an element, now it doesn't. If you want an element imperatively from JS, looks like you should usedocument.createElement('iron-meta')
Once I've got this worked out I'll send over a PR to update the README with some upgrade guidance.
The text was updated successfully, but these errors were encountered: