2020-10-01 15:48:20 +02:00
|
|
|
import Component from "@ember/component";
|
|
|
|
|
|
|
|
export default Component.extend({
|
2021-03-28 11:06:49 +02:00
|
|
|
classNames: ["wizard-composer-hyperlink"],
|
2022-03-16 12:46:16 +01:00
|
|
|
layoutName: "wizard/templates/components/wizard-composer-hyperlink",
|
2021-03-28 11:06:49 +02:00
|
|
|
|
2020-10-01 15:48:20 +02:00
|
|
|
actions: {
|
|
|
|
addLink() {
|
|
|
|
this.addLink(this.linkName, this.linkUrl);
|
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
|
2020-10-01 15:48:20 +02:00
|
|
|
hideBox() {
|
|
|
|
this.hideBox();
|
2021-03-28 11:06:49 +02:00
|
|
|
},
|
2020-10-01 15:48:20 +02:00
|
|
|
},
|
|
|
|
});
|