I am setting lots of properties with a series of set calls e.g.
this.set(\'prop1\', value1); this.set(\'prop2\', value2); .......
Is there a wa
There is actually a function for this: setProperties. You can use it like this:
setProperties
obj.setProperties({prop1: value1, prop2: value2})
obj should be instance of Ember.Object.
obj
Ember.Object