0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/components/wizard-composer-hyperlink.js.es6
2022-06-15 08:59:09 +02: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();
},
},
});