mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
1b8dbb132f
* Update Test & linting packages * Fixed new `no-quoteless-attributes` template lint errors Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
28 lines
1008 B
Handlebars
28 lines
1008 B
Handlebars
<KoenigCard
|
|
@icon="koenig/card-indicator-html"
|
|
@class={{concat (kg-style "container-card") " mih10 miw-100 relative"}}
|
|
@headerOffset={{this.headerOffset}}
|
|
@toolbar={{this.toolbar}}
|
|
@payload={{this.payload}}
|
|
@isSelected={{this.isSelected}}
|
|
@isEditing={{this.isEditing}}
|
|
@selectCard={{action this.selectCard}}
|
|
@deselectCard={{action this.deselectCard}}
|
|
@editCard={{action this.editCard}}
|
|
@saveCard={{action this.saveCard}}
|
|
@saveAsSnippet={{this.saveAsSnippet}}
|
|
@onLeaveEdit={{action "leaveEditMode"}}
|
|
@editor={{this.editor}}
|
|
>
|
|
{{#if this.isEditing}}
|
|
<GhCmEditor @value={{this.payload.html}}
|
|
@class="koenig-card-html--editor"
|
|
@autofocus={{true}}
|
|
@lineWrapping={{true}}
|
|
@update={{action "updateHtml"}}
|
|
/>
|
|
{{else}}
|
|
<div class="koenig-card-html-rendered">{{{sanitize-html this.payload.html}}}</div>
|
|
<div class="koenig-card-click-overlay"></div>
|
|
{{/if}}
|
|
</KoenigCard> |