Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
13 Zeilen
216 B
Text
13 Zeilen
216 B
Text
|
import Component from "@ember/component";
|
||
|
|
||
|
export default Component.extend({
|
||
|
actions: {
|
||
|
addLink() {
|
||
|
this.addLink(this.linkName, this.linkUrl);
|
||
|
},
|
||
|
hideBox() {
|
||
|
this.hideBox();
|
||
|
},
|
||
|
},
|
||
|
});
|