2023-07-12 09:55:17 +01:00
|
|
|
<div >
|
2023-07-06 12:20:57 +01:00
|
|
|
<ion-toolbar class="d-flex">
|
2023-07-28 16:28:59 +01:00
|
|
|
<div class="d-flex align-items-center px-20 pt-20 font-25-rem">
|
2023-07-06 12:20:57 +01:00
|
|
|
<div class="left cursor-pointer" (click)="close()">
|
|
|
|
|
<fa-icon icon="chevron-left" class="menu-icon font-awesome-1"></fa-icon>
|
|
|
|
|
</div>
|
|
|
|
|
|
2023-07-27 16:39:25 +01:00
|
|
|
<div class="middle add-ellipsis font-25-rem">
|
2023-07-06 12:20:57 +01:00
|
|
|
{{Document.Assunto}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="right cursor-pointer" (click)="openOptions()">
|
|
|
|
|
<fa-icon icon="ellipsis-v" class="menu-icon font-awesome-1"></fa-icon>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</ion-toolbar>
|
2023-07-12 09:55:17 +01:00
|
|
|
</div>
|
2023-07-06 12:20:57 +01:00
|
|
|
|
2023-07-03 12:04:52 +01:00
|
|
|
<editor
|
2023-07-21 17:17:28 +01:00
|
|
|
apiKey="wr5dk69kive0qr9ig6y5spqvlj3a0tsiwnzdsexnz241k69p"
|
|
|
|
|
[(ngModel)]="editorContent"
|
2023-07-06 12:20:57 +01:00
|
|
|
[init]="{
|
2023-07-13 11:39:24 +01:00
|
|
|
height: 600,
|
2023-07-03 12:04:52 +01:00
|
|
|
menubar: false,
|
|
|
|
|
plugins: [
|
|
|
|
|
'advlist autolink lists link image charmap print preview anchor',
|
|
|
|
|
'searchreplace visualblocks code fullscreen',
|
|
|
|
|
'insertdatetime media table paste code help wordcount print'
|
|
|
|
|
],
|
|
|
|
|
toolbar:
|
|
|
|
|
'undo redo | formatselect | bold italic backcolor | \
|
|
|
|
|
alignleft aligncenter alignright alignjustify | \
|
2023-07-06 12:20:57 +01:00
|
|
|
bullist numlist outdent indent | removeformat | print | help' }"
|
|
|
|
|
initialValue='{{content}}'
|
2023-07-10 12:38:41 +01:00
|
|
|
[(ngModel)]="content"
|
2023-07-06 12:20:57 +01:00
|
|
|
(onSaveContent)="somefunction()"
|
2023-07-10 12:38:41 +01:00
|
|
|
></editor>
|