We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
emberjs
Learn more about funding links in repositories.
Report abuse
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
Fiddle
A = Ember.Object.extend({ concatenatedProperties: ['shared'], shared: [] }) B = A.extend({ shared: Ember.K }) console.log( B.create().get('shared') ) //=> `Ember.K` (expected `[Ember.K]`) console.log( B.create({ shared: Ember.K }).get('shared') ) //=> `[Ember.K, Ember.K]` as expected
The text was updated successfully, but these errors were encountered:
@mbixby This does seem unexpected. Can you create a failing test for https://github.com/emberjs/ember.js/blob/master/packages/ember-metal/tests/mixin/concatenatedProperties_test.js ?
Sorry, something went wrong.
I'll have some time to fix it tomorrow.
307a654
Merge pull request #3339 from mbixby/master
d335e2e
Close #3307 – Fix unexpected behavior with functions in concatenated properties
No branches or pull requests
Fiddle
The text was updated successfully, but these errors were encountered: