Created
December 7, 2014 22:06
-
-
Save davetapley/2d7c5403b110ec76374b to your computer and use it in GitHub Desktop.
This file contains hidden or 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'; | |
| export default Ember.CollectionView.create({ | |
| //content: ['one', 'two'], | |
| itemViewClass: Ember.View.extend({ | |
| template: Ember.Handlebars.compile("{{view.content}}") | |
| }) | |
| }); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I comment in
content: ['one', 'two'], then I see one and two rendered.If I
this.get('translations')in thedebugger, I see an the array (with elements).But when I try to pass
translationsin viacontentBinding, I see nothing...