1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/components/wizard-custom-step.js.es6
2020-04-16 15:14:03 +10:00

16 Zeilen
376 B
JavaScript

import Component from "@ember/component";
import { default as discourseComputed } from 'discourse-common/utils/decorators';
export default Component.extend({
classNames: 'wizard-custom-step',
actions: {
bannerUploadDone(upload) {
this.set("step.banner", upload.url);
},
bannerUploadDeleted() {
this.set("step.banner", null);
}
}
});