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

19 lines
436 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}}
2024-09-23 15:09:19 +00:00
>{{t "note.expand"}}</div>
2024-09-19 11:50:04 +00:00
{{else}}
<div
type="button"
class="note-content-toggle"
{{on "click" this.collapse}}
2024-09-23 15:09:19 +00:00
>{{t "note.collapse"}}</div>
2024-09-19 11:50:04 +00:00
{{/if}}
{{/if}}
</div>