rich text editor update
This commit is contained in:
parent
6b33fa2f66
commit
0fe7d693e4
|
@ -23,7 +23,7 @@ import { Subscription } from "rxjs";
|
|||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
})
|
||||
export class RichTextEditorComponent implements OnInit, OnChanges, OnDestroy {
|
||||
|
||||
|
||||
@Input() form: FormControl;
|
||||
@Input() id: string = "editor1";
|
||||
@Input() placeholder: string = "Enter text";
|
||||
|
@ -57,7 +57,8 @@ export class RichTextEditorComponent implements OnInit, OnChanges, OnDestroy {
|
|||
{ name: 'H3 header', class: '', tag: 'h3' },
|
||||
{ name: 'H4 header', class: '', tag: 'h4' },
|
||||
{ name: 'H5 header', class: '', tag: 'h5' },
|
||||
{ name: 'H6 header', class: '', tag: 'h6' }
|
||||
{ name: 'H6 header', class: '', tag: 'h6' },
|
||||
{ name: 'Highlight', class: '', tag: 'mark' }
|
||||
],
|
||||
toolbarHiddenButtons: [
|
||||
[
|
||||
|
@ -66,12 +67,16 @@ export class RichTextEditorComponent implements OnInit, OnChanges, OnDestroy {
|
|||
],
|
||||
[
|
||||
'fontSize',
|
||||
// 'backgroundColor',
|
||||
'backgroundColor',
|
||||
// 'customClasses',
|
||||
'insertImage',
|
||||
'insertVideo',
|
||||
// 'removeFormat',
|
||||
'toggleEditorMode'
|
||||
],
|
||||
[
|
||||
'indent',
|
||||
'outdent'
|
||||
]
|
||||
]
|
||||
};
|
||||
|
@ -109,7 +114,7 @@ export class RichTextEditorComponent implements OnInit, OnChanges, OnDestroy {
|
|||
this.formTouchSubscription = this.formTouchEvent
|
||||
.subscribe(
|
||||
next => {
|
||||
if(next) {
|
||||
if (next) {
|
||||
this.form.markAsTouched();
|
||||
this.form.updateValueAndValidity();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue