wxt-8.x-3.011/modules/custom/wxt_ext/wxt_ext_editor/js/wxt_ext_editor.js
modules/custom/wxt_ext/wxt_ext_editor/js/wxt_ext_editor.js
/**
* @file wxt_ext_editor.js
*
*/
(function ($, CKEDITOR) {
'use strict';
CKEDITOR.plugins.add('wxt_ext_editor', {
beforeInit: function (editor) {
CKEDITOR.dtd.$removeEmpty.i = false;
CKEDITOR.dtd.$removeEmpty.span = false;
CKEDITOR.config.coreStyles_italic = {
element: 'i'
};
},
});
})(jQuery, CKEDITOR);
