mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 08:23:45 +08:00
fcb4e5a1a1
Co-authored-by: David Taylor <david@taylorhq.com>
22 lines
472 B
JavaScript
22 lines
472 B
JavaScript
import Route from "@ember/routing/route";
|
|
import { findWizard } from "wizard/models/wizard";
|
|
|
|
export default Route.extend({
|
|
model() {
|
|
return findWizard();
|
|
},
|
|
|
|
activate() {
|
|
document.body.classList.add("wizard");
|
|
this.controllerFor("application").setProperties({
|
|
showTop: false,
|
|
showFooter: false,
|
|
});
|
|
},
|
|
|
|
deactivate() {
|
|
document.body.classList.remove("wizard");
|
|
this.controllerFor("application").set("showTop", true);
|
|
},
|
|
});
|