mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-07 20:28:09 +00:00
- Replace deprecated methods on client - Fix broken dropdowns due to select kit 2 upgrade - Graceful error handling when Stripe keys are not configured but plugin enabled
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
import Component from "@ember/component";
|
|
|
|
export default Component.extend({
|
|
didInsertElement() {
|
|
this._super(...arguments);
|
|
this.cardElement.mount("#card-element");
|
|
},
|
|
didDestroyElement() {}
|
|
});
|