1
votes

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?

1

1 Answers

2
votes

Ember states has been removed since this pull request

You can find it in ember-states github repository