mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
38a499a531
closes https://github.com/TryGhost/Ghost/issues/13090 The `X` on stripe connect modal is not closing the popup as the updated modal changes was not wiring the close method. Note: Clicking outside the popup to close it was still working
30 lines
983 B
Handlebars
30 lines
983 B
Handlebars
<header class="modal-header" data-test-modal="webhook-form" {{will-destroy this.reset}}>
|
|
<h1 data-test-text="title">Connect with Stripe</h1>
|
|
</header>
|
|
<button class="close" href title="Close" {{action "closeModal"}} {{action (optional this.noop) on="mouseDown"}}>
|
|
{{svg-jar "close"}}
|
|
</button>
|
|
|
|
<form>
|
|
<div class="modal-body" {{did-insert this.updateSuccessModifier}}>
|
|
<GhMembersPaymentsSetting
|
|
@setStripeConnectIntegrationTokenSetting={{this.setStripeConnectIntegrationTokenSetting}}
|
|
@onConnected={{this.updateSuccessModifier}}
|
|
@onDisconnected={{this.updateSuccessModifier}}
|
|
/>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="modal-footer">
|
|
{{#if this.settings.stripeConnectAccountId}}
|
|
<button
|
|
class="gh-btn gh-btn-black"
|
|
{{action "confirm"}}
|
|
{{action (optional this.noop) on="mouseDown"}}
|
|
data-test-button="stripe-connect-ok"
|
|
>
|
|
<span>OK</span>
|
|
</button>
|
|
{{/if}}
|
|
</div>
|