All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Editor initialization failure handling. #INT-3365
- Set the default cloudChannel to 8. #INT-3357
- Updated CI library to latest
- Updated dependencies
- Set default cloudChannel to 6
- Updated dependencies
- Set release version in changelog.
- Initial release of the TinyMCE jQuery integration as a separate node module.
- The
$(e).tinymce({...})now returns aPromiseof all initialized editors instead of thethisobject. - The
$(e).tinymce()now returnsundefinedwhen no editor is present instead ofnull.
- Removing an element with
$(e).remove()destroys all contained editors. - Removing child elements with
$(e).empty()destroys all contained editors. - Overwriting an element with
$(e).text(value)or$(e).html(value)destroys all contained editors
- Removed the patch on
replaceAllas it was inconsistent with other functions. Due to this change callingreplaceAllwill not automatically destroy any moved or overwritten TinyMCE instances though they will likely be left in a non-functional state. - Removed the patch on
replaceWithas it was inconsistent with other functions. Due to this change callingreplaceWithwill not automatically destroy any moved or overwritten TinyMCE instances though they will likely be left in a non-functional state.