Ontica/Empiria.Land.Intranet

View on GitHub
src/app/shared/form-controls/text-editor/text-editor.component.html

Summary

Maintainability
Test Coverage
<quill-editor
    theme="snow"
    [modules]="editorModules"
    [(ngModel)]="value"
    [readOnly]="disabled"
    [placeholder]="''"
    [style.width.%]="100"
    (onContentChanged)="onChange(value)"
    (onBlur)="onTouched()"
    (onEditorCreated)="setFocus($event)">
</quill-editor>