Ghost/ghost/admin/app/components/koenig-image-editor.hbs
Rishabh Garg c6a75cf015
Integrated image editor for staff and tag admin pages (#16755)
refs https://github.com/TryGhost/Team/issues/3145

- includes image editing for generic upload image components to extend
image editing capabilities to other areas in Admin
- allows image editing for tag images and staff user images
2023-05-08 15:22:25 +05:30

16 lines
409 B
Handlebars

{{#if this.isEditorEnabled}}
<GhUploader
@onComplete={{this.onUploadComplete}}
as |uploader|
>
<button
type="button"
class="{{if @className @className "image-action image-edit"}}"
title="Edit image"
{{on "click" (fn this.handleClick uploader)}}
>
{{svg-jar "pen"}}
</button>
</GhUploader>
{{/if}}