/home/aqcert/public_html/admin/tinymce/tools/docs
NameSizeModeActions
tinymce.CommandEvent.js5450644editdlrm
tinymce.ContentEvent.js12290644editdlrm
tinymce.Editor.js120610644editdlrm
tinymce.Event.js12720644editdlrm
tinymce.FocusEvent.js6020644editdlrm
tinymce.ProgressStateEvent.js4220644editdlrm
tinymce.ResizeEvent.js7580644editdlrm
Edit: /home/aqcert/public_html/admin/tinymce/tools/docs/tinymce.ContentEvent.js (1229B)
/** * This class is the event object send when the content events occurs such as GetContent/SetContent. * * @class tinymce.ContentEvent * @extends tinymce.Event * @example * tinymce.activeEditor.on('GetContent', function(e) { * console.log(e.content); * }); */ /** * Optional state gets added for the load event then it's set to true. * * @property {Boolean} load */ /** * Optional state gets added for the save event then it's set to true. * * @property {Boolean} save */ /** * Optional state gets added for the getContent event then it's set to true. * * @property {Boolean} set */ /** * Optional state gets added for the setContent event then it's set to true. * * @property {Boolean} get */ /** * Optional element that the load/save event is for. This element is the textarea/div element that the * contents gets parsed from or serialized to. * * @property {DOMElement} element */ /** * Editor contents to be set or the content that was returned from the editor. * * @property {String} content HTML contents from the editor or to be put into the editor. */ /** * Format of the contents normally "html". * * @property {String} format Format of the contents normally "html". */