mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
4e56d98bf7
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
23 lines
875 B
Handlebars
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> |