Set tinymce urls to absolute

Potentially fixes a deeper TinyMCE issue that causes TinyMCE to remove
important parts of pasted URLs
This commit is contained in:
Sean 2020-05-04 17:19:05 +02:00
parent e0069f734a
commit 1a653c3fa7
1 changed files with 3 additions and 1 deletions

View File

@ -58,7 +58,9 @@ export abstract class BaseComponent {
mobile: {
theme: 'mobile',
plugins: ['autosave', 'lists', 'autolink']
}
},
relative_urls: false,
remove_script_host: true
};
public constructor(protected titleService: Title, protected translate: TranslateService) {