uhh, lots of things in frontend
This commit is contained in:
parent
76e8b183ca
commit
2d58312aa0
17 changed files with 30294 additions and 27939 deletions
19
frontend-reactive/app/components/note/content.hbs
Normal file
19
frontend-reactive/app/components/note/content.hbs
Normal file
|
@ -0,0 +1,19 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue