test button click

This commit is contained in:
Rimian Perkins
2019-12-06 14:33:38 +11:00
parent 2ce314fc8d
commit d3eed3546d
5 changed files with 43 additions and 13 deletions
@@ -0,0 +1,7 @@
export default Ember.Component.extend({
actions: {
clickPlan(plan) {
this.selectPlan(plan);
}
}
});
@@ -9,7 +9,10 @@ export default Ember.Controller.extend({
);
const elements = this.get("stripe").elements();
this.set("cardElement", elements.create("card", { hidePostalCode: true, disabled: true }));
this.set(
"cardElement",
elements.create("card", { hidePostalCode: true, disabled: true })
);
},
actions: {
@@ -1,8 +1,8 @@
<button class="btn btn-primary btn-discourse-subscriptions-subscribe">
<button class="btn btn-primary">
Purchase a subscription
</button>
<button class="btn btn-discourse-subscriptions-subscribe">
<button class="btn">
Make just one payment
</button>
@@ -11,10 +11,14 @@
<p>Select subscription period</p>
<div id="subscribe-buttons">
{{#each plans as plan}}
<button class="btn btn-discourse-subscriptions-subscribe">
{{#each plans as |plan|}}
{{#d-button
action="clickPlan"
actionParam=plan
class="btn btn-discourse-subscriptions-subscribe"
}}
<div>Monthly</div>
AUD $5.00
</button>
{{/d-button}}
{{/each}}
</div>