mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
f22a758a3b
refs https://github.com/TryGhost/Admin/pull/2238 Follow up to #2238, this should remove the existing no-implicit-this lint errors and any new violations should be flagged right away. * run the no-implicit-this codemod * updated todos
21 lines
698 B
Handlebars
21 lines
698 B
Handlebars
|
|
<header class="modal-header" data-test-modal="delete-user">
|
|
<h1>{{this.headerMessage}}</h1>
|
|
</header>
|
|
<button class="close" title="Close" type="button" {{on "click" this.closeModal}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
{{html-safe this.upgradeMessage.message}}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button class="gh-btn" data-test-button="cancel-upgrade" type="button" {{on "click" this.closeModal}}>
|
|
<span>Cancel</span>
|
|
</button>
|
|
|
|
<button class="gh-btn gh-btn-green" data-test-button="upgrade-plan" type="button" {{on "click" (action "upgrade")}}>
|
|
<span>Upgrade</span>
|
|
</button>
|
|
</div> |