Closed
Description
When using the alloyeditor-no-ckeditor
version, some plugins might conflict with the existing one. This affects
dragresize
tableresize
tabletools
If the CKEditor installation has the original bundled plugins, the namespaced ones won't get created. Then, if the editor is instantiated doing the following (not code complete):
var editor = AlloyEditor.editable('editable', {
extraPlugins: 'ae_dragresize,ae_tableresize,ae_tabletools',
removePlugins: 'dragresize,tableresize,tabletools'
});
The namespaced plugins won't produce any behaviour since we are returning empty objects for them.
Since we namespaced them, it should be safe enough to avoid the check for the original ones.