1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/components/wizard-composer-hyperlink.js.es6
2022-03-16 12:33:34 +01:00

16 Zeilen
334 B
JavaScript

import Component from "@ember/component";
export default Component.extend({
classNames: ["wizard-composer-hyperlink"],
layoutName: 'wizard/templates/components/wizard-composer-hyperlink',
actions: {
addLink() {
this.addLink(this.linkName, this.linkUrl);
},
hideBox() {
this.hideBox();
},
},
});