cirandas.net

ref: master

public/javascripts/tinymce/tools/docs/tinymce.CommandEvent.js


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * This class is the event object send when the BeforeExecCommand and ExecCommand event occurs.
 *
 * @class tinymce.CommandEvent
 * @extends tinymce.Event
 * @example
 * tinymce.activeEditor.on('ExecCommand', function(e) {
 *     console.log(e.command, e.ui, e.value);
 * });
 */

/**
 * Name of the command to execute.
 *
 * @property {String} command
 */

/**
 * User interface state. Normally false.
 *
 * @property {Boolean} ui User interface state.
 */

/**
 * Value object for the execCommand call.
 *
 * @property {Object} value
 */