frontend/src/app/components/nodes/norm/norm.component.html

13 lines
519 B
HTML
Raw Normal View History

<div [ngClass]="isDark() ? 'container dark' : 'container'">
<wysiwyg-editor
#wysiwygComponent
[contents]="contents"
(contentsChanged)="onContentsChanged($event)"
(contentsMutated)="onContentsMutated($event)"
(selectionChanged)="onSelectionChanged($event)"
[readonly]="isReadonly"
[editingUsers]="editorGroupUsers"
[editingUserSelections]="editingUserSelections"
[requestSelectionRefresh]="requestSelectionRefresh"
></wysiwyg-editor>
2020-10-13 16:57:56 +00:00
</div>