cirandas.net

ref: master

public/javascripts/tinymce/tools/docs/tinymce.Event.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
 * This is the base class for all TinyMCE events.
 *
 * @class tinymce.Event
 */

/**
 * Prevents the default action of an event to be executed.
 *
 * @method preventDefault
 */

/**
 * Prevents the default action of an event to be executed.
 *
 * @method preventDefault
 */

/**
 * Stops the event from propagating up to listeners on parent objects.
 *
 * @method stopPropagation
 */

/**
 * Prevents the event from propagating to listeners on the same object.
 *
 * @method stopImmediatePropagation
 */

/**
 * Returns true/false if the default action is to be prevented or not.
 *
 * @method isDefaultPrevented
 * @return {Boolean} True/false if the event is to be execured or not.
 */

/**
 * Returns true/false if the event propagation is stopped or not.
 *
 * @method isPropagationStopped
 * @return {Boolean} True/false if the event propagation is stopped or not.
 */

/**
 * Returns true/false if the event immediate propagation is stopped or not.
 *
 * @method isImmediatePropagationStopped
 * @return {Boolean} True/false if the event immediate propagation is stopped or not.
 */

/**
 * The event type name for example "click".
 *
 * @property {String} type
 */

/**
 * @include tinymce.ContentEvent.js
 * @include tinymce.CommandEvent.js
 * @include tinymce.ProgressStateEvent.js
 * @include tinymce.FocusEvent.js
 * @include tinymce.ResizeEvent.js
 */