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

11 lines
439 B
HTML
Raw Normal View History

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