Skip to content

v1.4.0

Choose a tag to compare

@oleq oleq released this 23 Sep 11:00
· 528 commits to master since this release

Features

  • Allowed attaching the inspector collapsed using a configuration passed to CKEditorInspector#attach(). Implemented the CKEditorInspector#destroy() method. Unified CKEditorInspector#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-collapsed class on <body> (next to .ck-inspector-body-expanded) to clearly distinguish expanded and collapsed inspector states. (664b9cd)

    Thanks to @skurfuerst!

Bug fixes

  • EditableElement should be recognized in the View node inspector. Closes #49. (729a922)

BREAKING CHANGES

  • The CKEditorInspector.attach( 'editor-name', editor ); syntax was deprecated and replaced by an object literal CKEditorInspector.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).