Custom CKEditor Configuration Not Working After Siebel 24.7 Upgrade
Hello!
I've recently upgraded from Siebel 24.1 to Siebel 24.7. As part of the
post-installation routines, I'm modifying ckeditor.js (E:\Siebel\AI\applicationcontainer_external\siebelwebroot\scripts\3rdParty\ckeditor)
to use a custom configuration (config_custom.js)
CKEDITOR.config = {
customConfig: "config_custom.js",
autoUpdateElement: !0,
language: "",
defaultLanguage: "en",
contentsLangDirection: "",
enterMode: CKEDITOR.ENTER_P,
forceEnterMode: !1,
shiftEnterMode: CKEDITOR.ENTER_BR,
docType: "\x3c!DOCTYPE html\x3e",
bodyId: "",
bodyClass: "",
fullPage: !1,
height: 200,
contentsCss: CKEDITOR.getUrl("contents.css"),
extraPlugins: "",
removePlugins: "",
protectedSource: [],
tabIndex: 0,
useComputedState: !0,
width: "",
baseFloatZIndex: 1E4,
blockedKeystrokes: [CKEDITOR.CTRL + 66, CKEDITOR.CTRL + 73, CKEDITOR.CTRL + 85]
};
However,
it seems that the configuration isn't being applied even though Its being read in the developer settings upon inspecting the page.