Browse Source
Merge pull request #12354 from vvlladd28/bug/tinymce/reletive-link
Fixed incorrect auto-conversion of inserted links in TinyMCE editor
pull/12358/head
Igor Kulikov
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
2 deletions
-
ui-ngx/src/app/modules/home/pages/mobile/common/editor-panel.component.ts
-
ui-ngx/src/app/modules/home/pages/notification/template/configuration/notification-template-configuration.component.ts
|
|
|
@ -63,7 +63,9 @@ export class EditorPanelComponent implements OnInit { |
|
|
|
const uiContainer = document.querySelector('.tox.tox-tinymce-aux'); |
|
|
|
container.parentNode.appendChild(uiContainer); |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
relative_urls: false, |
|
|
|
urlconverter_callback: (url) => url |
|
|
|
}; |
|
|
|
|
|
|
|
constructor(private fb: FormBuilder) { |
|
|
|
|
|
|
|
@ -95,7 +95,8 @@ export class NotificationTemplateConfigurationComponent implements OnDestroy, Co |
|
|
|
autofocus: false, |
|
|
|
branding: false, |
|
|
|
promotion: false, |
|
|
|
relative_urls: false |
|
|
|
relative_urls: false, |
|
|
|
urlconverter_callback: (url) => url |
|
|
|
}; |
|
|
|
|
|
|
|
private propagateChange = null; |
|
|
|
|