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

13 lines
519 B

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