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;
}
// 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', {
id: 'cust-placeholder-custom',