19 lines
408 B
Handlebars
19 lines
408 B
Handlebars
|
<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>
|