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

11 lines
237 B
Plaintext
Raw Normal View History

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