I see a lot of people using the .get()
and .set()
methods to access ALL of their properties. It's become taboo to access something directly and this is slightly rediculous.
App.set("ApplicationController", Em.Controller.extend({
/* stuff */
}));
.... why??