linstrom/frontend-reactive/app/components/note/content.hbs

19 lines
408 B
Handlebars
Raw Normal View History

2024-09-19 11:50:04 +00:00
<div class="note-content">
<p class="note-content-text">{{this.visibleContent}}</p>
{{#if this.canExpand}}
{{#if this.collapsed}}
<div
type="button"
class="note-content-toggle"
{{on "click" this.expand}}
>Expand</div>
{{else}}
<div
type="button"
class="note-content-toggle"
{{on "click" this.collapse}}
>Collapse</div>
{{/if}}
{{/if}}
</div>