-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Fix for loosing prototype's property value during getter/setter initialization #2258
Conversation
…w DOM, not Shady DOM!), rest of things are broken currently. Polymer includes patches that are proposed upstream: * Polymer/polymer#2205 * Polymer/polymer#2247 * Polymer/polymer#2258
Patches included: * Polymer/polymer#2205 * Polymer/polymer#2247 * Polymer/polymer#2258 * Polymer/polymer#2266 * Polymer/polymer#2286 (accepted upstream) * Polymer/polymer#2295 * Polymer/polymer#2322
Adding @kevinpschaaf to match corresponding issue |
With master code causes errors, something changed withing Polymer:( |
Sorry for the delay and thanks for the effort here. The supported way to define default values for properties is via the value field for a property in the |
Basically prototype's value was overridden with accessor.
Check added - if instance value doesn't exist - use value from prototype, just like it work during regular prototype inheritance.
Fixes #2257 (partially)