0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Removed unused early-access modal

no issue

- modal was added when tiers were first introduced as a beta feature but is no longer being used
This commit is contained in:
Kevin Ansfield 2022-11-11 16:23:18 +00:00
parent 332dd4fbf1
commit 283babe574
2 changed files with 0 additions and 16 deletions

View file

@ -1,13 +0,0 @@
<header class="modal-header">
<h1>Enable early-access feature</h1>
</header>
<a class="close" href="" role="button" title="Close" {{action "closeModal"}}>{{svg-jar "close"}}<span class="hidden">Close</span></a>
<div class="modal-body">
<p>You're about to enable a feature that's not fully finished yet, and <strong>once it's turned on there's no way back</strong>. Are you sure?</p>
</div>
<div class="modal-footer">
<button class="gh-btn" type="button" {{action "closeModal"}}><span>Cancel</span></button>
<button class="gh-btn gh-btn-primary" type="button" {{action "closeModal"}}><span>Enable feature</span></button>
</div>

View file

@ -1,3 +0,0 @@
import ModalComponent from 'ghost-admin/components/modal-base';
export default ModalComponent.extend({});