You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frontend/src/app/components/nodes/norm/norm.component.html

11 lines
439 B

<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>
</div>