2019-10-23 13:06:54 -04:00
|
|
|
import Controller from "@ember/controller";
|
2018-06-15 11:03:24 -04:00
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
2016-09-19 16:11:15 -04:00
|
|
|
|
2019-10-23 13:06:54 -04:00
|
|
|
export default Controller.extend({
|
2016-09-19 16:11:15 -04:00
|
|
|
currentStepId: null,
|
|
|
|
|
2018-06-15 11:03:24 -04:00
|
|
|
@computed("currentStepId")
|
2016-09-19 16:11:15 -04:00
|
|
|
showCanvas(currentStepId) {
|
2018-06-15 11:03:24 -04:00
|
|
|
return currentStepId === "finished";
|
2016-09-19 16:11:15 -04:00
|
|
|
}
|
|
|
|
});
|