ckeditor.config.js / CKEDITOR.editorConfig() bug
-
It seems that modifications made by CKEDITOR.editorConfig() in ckeditor.config.js are completely overwritten or not even copied into CKEDITOR.config:
setTimeout(function(){ console.log(CKEDITOR.config); // untouched settings console.log(CKEDITOR.config.docType); // transitional xhtml console.log(CKEDITOR.config.i_was_here); // undefined },2000); CKEDITOR.editorConfig = function(config) { config.i_was_here=true; config.docType = '<!DOCTYPE html>';
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘ckeditor.config.js / CKEDITOR.editorConfig() bug’ is closed to new replies.