discourse/app/assets/javascripts/wizard/addon/controllers/wizard.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
221 B
JavaScript
Raw Normal View History

import Controller, { inject as controller } from "@ember/controller";
export default class extends Controller {
@controller wizardStep;
get showCanvas() {
return this.wizardStep.get("step.id") === "ready";
}
}