Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
15 Zeilen
268 B
JavaScript
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();
|
|
}
|
|
},
|
|
});
|