frontend/src/app/components/nodes/norm/norm.component.html
garrettmills 60e08d8a76
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
Add mutation handling to norm editor; disable socket connection for now
2021-01-31 10:26:07 -06:00

13 lines
519 B
HTML

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