2020-10-01 19:18:20 +05:30
|
|
|
import Component from "@ember/component";
|
|
|
|
|
|
|
|
export default Component.extend({
|
2020-10-02 10:33:01 +10:00
|
|
|
classNames: ['wizard-composer-hyperlink'],
|
|
|
|
|
2020-10-01 19:18:20 +05:30
|
|
|
actions: {
|
|
|
|
addLink() {
|
|
|
|
this.addLink(this.linkName, this.linkUrl);
|
|
|
|
},
|
2020-10-02 10:33:01 +10:00
|
|
|
|
2020-10-01 19:18:20 +05:30
|
|
|
hideBox() {
|
|
|
|
this.hideBox();
|
2020-10-02 10:33:01 +10:00
|
|
|
}
|
2020-10-01 19:18:20 +05:30
|
|
|
},
|
|
|
|
});
|