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

Merge pull request #4621 from graphiclunarkid/issue4583

Swap button order on deleter-user modal
This commit is contained in:
John O'Nolan 2014-12-11 17:20:43 +02:00
commit 4c3d548bb3

View file

@ -8,12 +8,12 @@
</section> </section>
{{#if confirm}} {{#if confirm}}
<footer class="modal-footer"> <footer class="modal-footer">
<button type="button" {{bind-attr class="acceptButtonClass :js-button-accept"}} {{action "confirm" "accept"}}>
{{confirm.accept.text}}
</button>
<button type="button" {{bind-attr class="rejectButtonClass :js-button-reject"}} {{action "confirm" "reject"}}> <button type="button" {{bind-attr class="rejectButtonClass :js-button-reject"}} {{action "confirm" "reject"}}>
{{confirm.reject.text}} {{confirm.reject.text}}
</button> </button>
<button type="button" {{bind-attr class="acceptButtonClass :js-button-accept"}} {{action "confirm" "accept"}}>
{{confirm.accept.text}}
</button>
</footer> </footer>
{{/if}} {{/if}}
</section> </section>