mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-09 13:04:49 +00:00
8 lines
173 B
Plaintext
8 lines
173 B
Plaintext
|
export default Ember.Component.extend({
|
||
|
didInsertElement() {
|
||
|
this._super(...arguments);
|
||
|
this.cardElement.mount("#card-element");
|
||
|
},
|
||
|
didDestroyElement() {}
|
||
|
});
|