11 lines
237 B
Plaintext
Raw Normal View History

import computed from 'ember-addons/ember-computed-decorators';
export default Ember.Controller.extend({
currentStepId: null,
@computed('currentStepId')
showCanvas(currentStepId) {
return currentStepId === 'finished';
}
});