UI: Fixed incorrect insert link in tinymce editor
This commit is contained in:
parent
cf9204416b
commit
5623b3ed7a
@ -63,7 +63,9 @@ export class EditorPanelComponent implements OnInit {
|
|||||||
const uiContainer = document.querySelector('.tox.tox-tinymce-aux');
|
const uiContainer = document.querySelector('.tox.tox-tinymce-aux');
|
||||||
container.parentNode.appendChild(uiContainer);
|
container.parentNode.appendChild(uiContainer);
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
|
relative_urls: false,
|
||||||
|
urlconverter_callback: (url) => url
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor(private fb: FormBuilder) {
|
constructor(private fb: FormBuilder) {
|
||||||
|
|||||||
@ -95,7 +95,8 @@ export class NotificationTemplateConfigurationComponent implements OnDestroy, Co
|
|||||||
autofocus: false,
|
autofocus: false,
|
||||||
branding: false,
|
branding: false,
|
||||||
promotion: false,
|
promotion: false,
|
||||||
relative_urls: false
|
relative_urls: false,
|
||||||
|
urlconverter_callback: (url) => url
|
||||||
};
|
};
|
||||||
|
|
||||||
private propagateChange = null;
|
private propagateChange = null;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user