My My Ember.js classes, views, and controllers are getting a bit detailed. Part of this comes from writing this.get('attr')instead this.attr.
Is it possible to simply write this.attrif an attribute is declared directly, and not through a binding?
(I understand that customization is another problem - you always need to call this.set('attr', value)to update dependent attributes and templates.)
source
share