KEditor version 1.0.1
New callback:
/**
* @option {Function} onInitContent Method will be called when initializing content area. It can return array of jQuery objects which will be initialized as editable section in content area. By default, all first level sections under content area will be initialized.
* @option {Function} onInitSection Method will be called when initializing section after dropped snippet into content are. Arguments: section
* @option {Function} onContentChanged Callback will be called when content is changed. Arguments: event
* @option {Function} onSnippetDropped Callback will be called when snippet is dropped into content area. Arguments: event, newSection, droppedSnippet
* @option {Function} onBeforeSectionDeleted Callback will be called before selected section is deleted. Arguments: event, btnRemove, selectedSection
* @option {Function} onSectionChanged Callback will be called when content of section is changed. Arguments: event, changedSection
* @option {Function} onSectionDuplicated Callback will be called when section is duplicated. Arguments: event, originalSection, newSection
* @option {Function} onSectionSelected Callback will be called when section is selected. Arguments: event, selectedSection
*/