2020-04-05 11:37:09 +10:00
|
|
|
import Component from "@ember/component";
|
2017-10-19 10:17:36 +08:00
|
|
|
|
2020-04-05 11:37:09 +10:00
|
|
|
export default Component.extend({
|
2021-03-28 20:06:49 +11:00
|
|
|
classNames: "wizard-custom-step",
|
|
|
|
|
2020-03-30 10:53:28 +11:00
|
|
|
actions: {
|
|
|
|
bannerUploadDone(upload) {
|
|
|
|
this.set("step.banner", upload.url);
|
|
|
|
},
|
2021-03-28 20:06:49 +11:00
|
|
|
|
2020-03-30 10:53:28 +11:00
|
|
|
bannerUploadDeleted() {
|
|
|
|
this.set("step.banner", null);
|
2021-03-28 20:06:49 +11:00
|
|
|
},
|
|
|
|
},
|
2017-09-23 10:34:07 +08:00
|
|
|
});
|