Ghost/ghost/admin/app/components/modals/delete-post.hbs
Kevin Ansfield 4e56d98bf7 Added "Enter" key handling to refactored delete-post modal
refs https://github.com/TryGhost/Team/issues/559

- there's no base modal any more so each modal is in control of it's own keyboard handling
2021-09-13 13:58:13 +01:00

23 lines
875 B
Handlebars

<div class="modal-content" {{on-key "Enter" (perform this.deletePostTask)}}>
<header class="modal-header">
<h1>Are you sure you want to delete this {{@data.post.displayName}}?</h1>
</header>
<button type="button" class="close" title="Close" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
<div class="modal-body">
<p>
You're about to delete "<strong>{{@data.post.title}}</strong>".
This is permanent! We warned you, k?
</p>
</div>
<div class="modal-footer">
<button type="button" class="gh-btn" {{on "click" @close}}><span>Cancel</span></button>
<GhTaskButton
@buttonText="Delete"
@successText="Deleted"
@task={{this.deletePostTask}}
@class="gh-btn gh-btn-red gh-btn-icon"
/>
</div>
</div>