mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
b8a1036a43
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.
18 lines
494 B
Handlebars
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}}
|