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

11 lines
237 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import computed from "ember-addons/ember-computed-decorators";
export default Ember.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";
}
});