discourse/app/assets/javascripts/wizard/controllers/application.js.es6

12 lines
275 B
Plaintext
Raw Normal View History

import Controller from "@ember/controller";
2018-06-15 11:03:24 -04:00
import computed from "ember-addons/ember-computed-decorators";
export default Controller.extend({
currentStepId: null,
2018-06-15 11:03:24 -04:00
@computed("currentStepId")
showCanvas(currentStepId) {
2018-06-15 11:03:24 -04:00
return currentStepId === "finished";
}
});