0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-16 06:40:29 +01:00
discourse-custom-wizard/assets/javascripts/wizard/components/wizard-composer-hyperlink.js.es6

16 Zeilen
263 B
Text

import Component from "@ember/component";
export default Component.extend({
2021-02-24 08:43:35 +01:00
classNames: ["wizard-composer-hyperlink"],
actions: {
addLink() {
this.addLink(this.linkName, this.linkUrl);
},
2021-02-24 08:43:35 +01:00
hideBox() {
this.hideBox();
2021-02-24 08:43:35 +01:00
},
},
});