v1.4.0
Features
-
Allowed attaching the inspector collapsed using a configuration passed to
CKEditorInspector#attach(). Implemented theCKEditorInspector#destroy()method. UnifiedCKEditorInspector#attach()arguments syntax and allowed attaching to multiple editor instances at a time. Closes #44. Closes #42. Closes #48. (69ad014) -
Implemented the
CKEditorInspector#attachToAll()method. Closes #56. (8a3c7ea) -
Introduced the
.ck-inspector-body-collapsedclass on<body>(next to.ck-inspector-body-expanded) to clearly distinguish expanded and collapsed inspector states. (664b9cd)Thanks to @skurfuerst!
Bug fixes
BREAKING CHANGES
-
The
CKEditorInspector.attach( 'editor-name', editor );syntax was deprecated and replaced by an object literalCKEditorInspector.attach( { 'editor-name': editor, ... } );.Note: The old syntax works (backward compatibility) but it produces a warning in the console and will be removed in the future. We highly recommend using the new
attach()method syntax (learn more).