This commit is contained in:
2026-01-16 02:49:13 +01:00
parent 8bc927bfcd
commit 1eb18c8036
2 changed files with 7 additions and 1 deletions

View File

@@ -1059,7 +1059,12 @@ const refreshPlaceholderComponent = (component) => {
editor.__bridgePlaceholderEventsBound = true; editor.__bridgePlaceholderEventsBound = true;
} }
// RTE-Integration deaktiviert (RichText wird aktuell ausgebaut). const bindRteButton = () => ensureRtePlaceholderButton(editor);
if (editor.RichTextEditor) {
bindRteButton();
} else if (typeof editor.on === 'function') {
editor.on('load', bindRteButton, { once: true });
}
addOnce(bm, 'cust-placeholder-custom', { addOnce(bm, 'cust-placeholder-custom', {
id: 'cust-placeholder-custom', id: 'cust-placeholder-custom',

View File

@@ -51,6 +51,7 @@ if ($fontSources) {
window.BridgeParts = window.BridgeParts || {}; window.BridgeParts = window.BridgeParts || {};
window.BridgeParts.DISABLE_EDITOR_EXTENSIONS = false; window.BridgeParts.DISABLE_EDITOR_EXTENSIONS = false;
window.BridgeParts.DISABLE_EDITOR_BEHAVIOR = true; window.BridgeParts.DISABLE_EDITOR_BEHAVIOR = true;
window.BridgeParts.DISABLE_PLACEHOLDERS = false;
window.BridgeParts.LOG_CONFIG = window.BridgeParts.LOG_CONFIG || {}; window.BridgeParts.LOG_CONFIG = window.BridgeParts.LOG_CONFIG || {};
window.BridgeParts.LOG_CONFIG.INFO_ENABLED = false; window.BridgeParts.LOG_CONFIG.INFO_ENABLED = false;
window.BridgeParts.LOG_CONFIG.DATA_ENABLED = false; window.BridgeParts.LOG_CONFIG.DATA_ENABLED = false;