Skip to content

Instantly share code, notes, and snippets.

@GavinJoyce
Last active January 21, 2016 20:10
Show Gist options
  • Save GavinJoyce/6595711930dca0d732d7 to your computer and use it in GitHub Desktop.
Save GavinJoyce/6595711930dca0d732d7 to your computer and use it in GitHub Desktop.
concatenatedProperties
import Ember from 'ember';
//the foods array will concatinate, the colours are replaced
let Animal = Ember.Object.extend({
concatenatedProperties: ['foods'],
colours: ['white'],
foods: ['milk']
});
let Cat = Animal.extend({
colours: ['black'],
foods: ['tuna']
});
let cat = Cat.create();
export default Ember.Controller.extend({
appName:`[${cat.get('colours')}] [${cat.get('foods')}]`
});
{
"version": "0.5.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.2.0/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment