0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/components/wizard-composer-hyperlink.js.es6
2020-10-02 10:33:01 +10:00

15 Zeilen
268 B
JavaScript

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