Ghost/ghost/admin/app/templates/components/gh-image-uploader-with-preview.hbs
Aileen Nowak b8a1036a43 No more icon font: {{inline-svg}} - Part 2 (#642)
closes TryGhost/Ghost#8107
- replaces all icons in Ghost-Admin with SVGs by using our new helper {{inline-svg}}.
- removes all ghosticon fonts.

This is the second and final batch of the refactor.
2017-04-14 17:22:14 +01:00

18 lines
494 B
Handlebars

{{#if image}}
<div class="gh-image-uploader -with-image">
<div><img src={{image}}></div>
<a class="image-cancel" title="Delete" {{action "remove"}}>
{{inline-svg "trash"}}
<span class="hidden">Delete</span>
</a>
</div>
{{else}}
{{gh-image-uploader
text=text
altText=altText
update=(action 'update')
uploadStarted=(action 'uploadStarted')
uploadFinished=(action 'uploadFinished')
}}
{{/if}}