This is probably beyond easy, but I'm having a hard time to figure out how to access properties of parent views:
App.ParentView = Ember.View.extend({
foo: 'bar',
child_view: Ember.View.extend({
init: function(){
// get the value of App.ParentView.foo
// ???
}
})
});