Skip to content

Commit

Permalink
Disable CKEditor version check
Browse files Browse the repository at this point in the history
  • Loading branch information
chrieinv committed Jul 4, 2024
1 parent f425291 commit 7b2983b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,7 @@ CKEDITOR.editorConfig = function (config) {
// config.extraAllowedContent = 'section aside header h1 h2 h3 h4 h5 h6 p ul ol li br b strong iframe embed *(*)[class,data-*];' +
// 'math maction maligngroup malignmark menclose merror mfenced mfrac mglyph mi mlabeledtr mlongdiv mmultiscripts mn mo mover mpadded mphantom mroot mrow ms mscarries ' +
// 'mscarry msgroup msline mspace msqrt msrow mstack mstyle msub msup msubsup mtable mtd mtext mtr munder munderover semantics annotation annotation-xml';

// Disable version check, https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-versionCheck
config.versionCheck = false;
};
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ CKEDITOR.editorConfig = function (config) {
config.removeButtons = '';

config.extraPlugins = 'edlibmatheditor';

// Disable version check, https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-versionCheck
config.versionCheck = false;
};

0 comments on commit 7b2983b

Please sign in to comment.