- 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() {}
|
|
});
|