PHP Classes

File: public/js/tinymce/tools/docs/tinymce.ContentEvent.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/tools/docs/tinymce.ContentEvent.js   Download  
File: public/js/tinymce/tools/docs/tinymce.ContentEvent.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 1,229 bytes
 

Contents

Class file image Download
/** * 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". */