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