mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-01-05 12:12:18 -05:00
11 lines
237 B
Text
11 lines
237 B
Text
|
import computed from 'ember-addons/ember-computed-decorators';
|
||
|
|
||
|
export default Ember.Controller.extend({
|
||
|
currentStepId: null,
|
||
|
|
||
|
@computed('currentStepId')
|
||
|
showCanvas(currentStepId) {
|
||
|
return currentStepId === 'finished';
|
||
|
}
|
||
|
});
|