Я использую TinyMCE (v.5.1.3) в модальном Angular (v.8), я не могу вставлять / редактировать ссылки. Поля ввода отключены. Спасибо за любую помощь!
public init(input) {
tinymce.baseURL = "../assets"
tinymce.init({
selector: '#editor',
plugins: ['link'],
statusbar: false,
body_class: 'mce-editor',
menu: {
insert: {title: 'Insert', items: 'link'}
},
setup: editor => {
this.editor = editor;
editor.on('keyup change', () => {
const content = editor.getContent();
this.onEditorContentChange.emit(content);
});
}
});
this.setContent(input);
this.onEditorContentChange.subscribe((c) => this.Content = c);
}
Поля ввода отключены