I'm updating from a prerelease to Ember js 1.0.0. I'm currently getting the title error for
Ember.State.reopen( {
active: false,
enter: function() {
this.set('active', true);
},
exit: function() {
this.set('active', false);
}
});
What causes this error and how do I fix it?