Last active
January 21, 2016 20:10
-
-
Save GavinJoyce/6595711930dca0d732d7 to your computer and use it in GitHub Desktop.
concatenatedProperties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')}]` | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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