|
0
|
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
|
2 |
<html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#"> |
|
|
3 |
<head> |
|
|
4 |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
|
|
5 |
<title>API: event-custom event-facade.js (YUI Library)</title> |
|
|
6 |
|
|
|
7 |
<link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" /> |
|
|
8 |
<link rel="stylesheet" type="text/css" href="assets/api.css" /> |
|
|
9 |
|
|
|
10 |
<script type="text/javascript" src="assets/api-js"></script> |
|
|
11 |
<script type="text/javascript" src="assets/ac-js"></script> |
|
|
12 |
</head> |
|
|
13 |
|
|
|
14 |
<body id="yahoo-com"> |
|
|
15 |
|
|
|
16 |
<div id="doc3" class="yui-t2"> |
|
|
17 |
<div id="hd"> |
|
|
18 |
<h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1> |
|
|
19 |
<h3>event-custom <span class="subtitle">3.0.0b1</span></h3> |
|
|
20 |
<a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a> |
|
|
21 |
> <a href="./module_event-custom.html" title="event-custom">event-custom</a> |
|
|
22 |
|
|
|
23 |
> event-facade.js (source view) |
|
|
24 |
<form onsubmit="return false"> |
|
|
25 |
<div id="propertysearch"> |
|
|
26 |
Search: <input autocomplete="off" id="searchinput" /> |
|
|
27 |
<div id="searchresults"> |
|
|
28 |
|
|
|
29 |
</div> |
|
|
30 |
</div> |
|
|
31 |
</form> |
|
|
32 |
</div> |
|
|
33 |
|
|
|
34 |
<div id="bd"> |
|
|
35 |
<div id="yui-main"> |
|
|
36 |
<div class="yui-b"> |
|
|
37 |
<form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form"> |
|
|
38 |
<fieldset> |
|
|
39 |
<legend>Filters</legend> |
|
|
40 |
<span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span> |
|
|
41 |
<span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span> |
|
|
42 |
<span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span> |
|
|
43 |
</fieldset> |
|
|
44 |
</form> |
|
|
45 |
|
|
|
46 |
<div id="srcout"> |
|
|
47 |
<style> |
|
|
48 |
#doc3 .classopts { display:none; } |
|
|
49 |
</style> |
|
|
50 |
<div class="highlight" ><pre><span class="o">(</span><span class="k">function</span><span class="o">()</span> <span class="o">{</span> |
|
|
51 |
|
|
|
52 |
<span class="c">/**</span> |
|
|
53 |
<span class="c"> * Wraps and protects a custom event for use when emitFacade is set to true.</span> |
|
|
54 |
<span class="c"> * @class EventFacade</span> |
|
|
55 |
<span class="c"> * @param e {Event} the custom event</span> |
|
|
56 |
<span class="c"> * @param currentTarget {HTMLElement} the element the listener was attached to</span> |
|
|
57 |
<span class="c"> */</span> |
|
|
58 |
|
|
|
59 |
<span class="c">/*</span> |
|
|
60 |
<span class="c">var PROPS = {</span> |
|
|
61 |
<span class="c"> details: 1,</span> |
|
|
62 |
<span class="c"> type: 1,</span> |
|
|
63 |
<span class="c"> target: 1,</span> |
|
|
64 |
<span class="c"> currentTarget: 1,</span> |
|
|
65 |
<span class="c"> stopPropagation: 2,</span> |
|
|
66 |
<span class="c"> stopImmediatePropagation: 2,</span> |
|
|
67 |
<span class="c"> preventDefault: 2,</span> |
|
|
68 |
<span class="c"> halt: 2</span> |
|
|
69 |
<span class="c">};</span> |
|
|
70 |
<span class="c"></span> |
|
|
71 |
<span class="c">Y.EventFacade = function(e, currentTarget) {</span> |
|
|
72 |
<span class="c"> if (e) {</span> |
|
|
73 |
<span class="c"> Y.Object.each(PROPS, function(v, k) {</span> |
|
|
74 |
<span class="c"> //this[k] = (v == 2) ? e[k].apply(e, arguments) : e[k];</span> |
|
|
75 |
<span class="c"> var val = e[k];</span> |
|
|
76 |
<span class="c"> if (val) {</span> |
|
|
77 |
<span class="c"> this[k] = (v == 2) ? function() {</span> |
|
|
78 |
<span class="c"> if (val) {</span> |
|
|
79 |
<span class="c"> val.apply(e, arguments);</span> |
|
|
80 |
<span class="c"> }</span> |
|
|
81 |
<span class="c"> } : val;</span> |
|
|
82 |
<span class="c"> } else {</span> |
|
|
83 |
<span class="c"> console.log('missing ' + k);</span> |
|
|
84 |
<span class="c"> }</span> |
|
|
85 |
<span class="c"> });</span> |
|
|
86 |
<span class="c"> }</span> |
|
|
87 |
<span class="c">};</span> |
|
|
88 |
<span class="c">*/</span> |
|
|
89 |
|
|
|
90 |
<span class="nx">Y</span><span class="o">.</span><span class="nx">EventFacade</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">e</span><span class="o">,</span> <span class="nx">currentTarget</span><span class="o">)</span> <span class="o">{</span> |
|
|
91 |
|
|
|
92 |
<span class="nx">e</span> <span class="o">=</span> <span class="nx">e</span> <span class="o">||</span> <span class="o">{};</span> |
|
|
93 |
|
|
|
94 |
<span class="c">/**</span> |
|
|
95 |
<span class="c"> * The arguments passed to fire </span> |
|
|
96 |
<span class="c"> * @property details</span> |
|
|
97 |
<span class="c"> * @type Array</span> |
|
|
98 |
<span class="c"> */</span> |
|
|
99 |
<span class="k">this</span><span class="o">.</span><span class="nx">details</span> <span class="o">=</span> <span class="nx">e</span><span class="o">.</span><span class="nx">details</span><span class="o">;</span> |
|
|
100 |
|
|
|
101 |
<span class="c">/**</span> |
|
|
102 |
<span class="c"> * The event type</span> |
|
|
103 |
<span class="c"> * @property type</span> |
|
|
104 |
<span class="c"> * @type string</span> |
|
|
105 |
<span class="c"> */</span> |
|
|
106 |
<span class="k">this</span><span class="o">.</span><span class="nx">type</span> <span class="o">=</span> <span class="nx">e</span><span class="o">.</span><span class="nx">type</span><span class="o">;</span> |
|
|
107 |
|
|
|
108 |
<span class="c">//////////////////////////////////////////////////////</span> |
|
|
109 |
<span class="c"></span> |
|
|
110 |
<span class="c">/**</span> |
|
|
111 |
<span class="c"> * Node reference for the targeted eventtarget</span> |
|
|
112 |
<span class="c"> * @propery target</span> |
|
|
113 |
<span class="c"> * @type Node</span> |
|
|
114 |
<span class="c"> */</span> |
|
|
115 |
<span class="k">this</span><span class="o">.</span><span class="nx">target</span> <span class="o">=</span> <span class="nx">e</span><span class="o">.</span><span class="nx">target</span><span class="o">;</span> |
|
|
116 |
|
|
|
117 |
<span class="c">/**</span> |
|
|
118 |
<span class="c"> * Node reference for the element that the listener was attached to.</span> |
|
|
119 |
<span class="c"> * @propery currentTarget</span> |
|
|
120 |
<span class="c"> * @type Node</span> |
|
|
121 |
<span class="c"> */</span> |
|
|
122 |
<span class="k">this</span><span class="o">.</span><span class="nx">currentTarget</span> <span class="o">=</span> <span class="nx">currentTarget</span><span class="o">;</span> |
|
|
123 |
|
|
|
124 |
<span class="c">/**</span> |
|
|
125 |
<span class="c"> * Node reference to the relatedTarget</span> |
|
|
126 |
<span class="c"> * @propery relatedTarget</span> |
|
|
127 |
<span class="c"> * @type Node</span> |
|
|
128 |
<span class="c"> */</span> |
|
|
129 |
<span class="k">this</span><span class="o">.</span><span class="nx">relatedTarget</span> <span class="o">=</span> <span class="nx">e</span><span class="o">.</span><span class="nx">relatedTarget</span><span class="o">;</span> |
|
|
130 |
|
|
|
131 |
<span class="c">/**</span> |
|
|
132 |
<span class="c"> * Stops the propagation to the next bubble target</span> |
|
|
133 |
<span class="c"> * @method stopPropagation</span> |
|
|
134 |
<span class="c"> */</span> |
|
|
135 |
<span class="k">this</span><span class="o">.</span><span class="nx">stopPropagation</span> <span class="o">=</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span> |
|
|
136 |
<span class="nx">e</span><span class="o">.</span><span class="nx">stopPropagation</span><span class="o">();</span> |
|
|
137 |
<span class="o">};</span> |
|
|
138 |
|
|
|
139 |
<span class="c">/**</span> |
|
|
140 |
<span class="c"> * Stops the propagation to the next bubble target and</span> |
|
|
141 |
<span class="c"> * prevents any additional listeners from being exectued</span> |
|
|
142 |
<span class="c"> * on the current target.</span> |
|
|
143 |
<span class="c"> * @method stopImmediatePropagation</span> |
|
|
144 |
<span class="c"> */</span> |
|
|
145 |
<span class="k">this</span><span class="o">.</span><span class="nx">stopImmediatePropagation</span> <span class="o">=</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span> |
|
|
146 |
<span class="nx">e</span><span class="o">.</span><span class="nx">stopImmediatePropagation</span><span class="o">();</span> |
|
|
147 |
<span class="o">};</span> |
|
|
148 |
|
|
|
149 |
<span class="c">/**</span> |
|
|
150 |
<span class="c"> * Prevents the event's default behavior</span> |
|
|
151 |
<span class="c"> * @method preventDefault</span> |
|
|
152 |
<span class="c"> */</span> |
|
|
153 |
<span class="k">this</span><span class="o">.</span><span class="nx">preventDefault</span> <span class="o">=</span> <span class="k">function</span><span class="o">()</span> <span class="o">{</span> |
|
|
154 |
<span class="nx">e</span><span class="o">.</span><span class="nx">preventDefault</span><span class="o">();</span> |
|
|
155 |
<span class="o">};</span> |
|
|
156 |
|
|
|
157 |
<span class="c">/**</span> |
|
|
158 |
<span class="c"> * Stops the event propagation and prevents the default</span> |
|
|
159 |
<span class="c"> * event behavior.</span> |
|
|
160 |
<span class="c"> * @method halt</span> |
|
|
161 |
<span class="c"> * @param immediate {boolean} if true additional listeners</span> |
|
|
162 |
<span class="c"> * on the current target will not be executed</span> |
|
|
163 |
<span class="c"> */</span> |
|
|
164 |
<span class="k">this</span><span class="o">.</span><span class="nx">halt</span> <span class="o">=</span> <span class="k">function</span><span class="o">(</span><span class="nx">immediate</span><span class="o">)</span> <span class="o">{</span> |
|
|
165 |
<span class="nx">e</span><span class="o">.</span><span class="nx">halt</span><span class="o">(</span><span class="nx">immediate</span><span class="o">);</span> |
|
|
166 |
<span class="o">};</span> |
|
|
167 |
|
|
|
168 |
<span class="o">};</span> |
|
|
169 |
|
|
|
170 |
<span class="o">})();</span> |
|
|
171 |
</pre></div> |
|
|
172 |
</div> |
|
|
173 |
</div> |
|
|
174 |
</div> |
|
|
175 |
<div class="yui-b"> |
|
|
176 |
<div class="nav"> |
|
|
177 |
|
|
|
178 |
<div id="moduleList" class="module"> |
|
|
179 |
<h4>Modules</h4> |
|
|
180 |
<ul class="content"> |
|
|
181 |
<li class=""><a href="module_anim.html" title="anim">anim</a></li> |
|
|
182 |
<li class=""><a href="module_attribute.html" title="attribute">attribute</a></li> |
|
|
183 |
<li class=""><a href="module_base.html" title="base">base</a></li> |
|
|
184 |
<li class=""><a href="module_cache.html" title="cache">cache</a></li> |
|
|
185 |
<li class=""><a href="module_classnamemanager.html" title="classnamemanager">classnamemanager</a></li> |
|
|
186 |
<li class=""><a href="module_collection.html" title="collection">collection</a></li> |
|
|
187 |
<li class=""><a href="module_console.html" title="console">console</a></li> |
|
|
188 |
<li class=""><a href="module_console-filters.html" title="console-filters">console-filters</a></li> |
|
|
189 |
<li class=""><a href="module_cookie.html" title="cookie">cookie</a></li> |
|
|
190 |
<li class=""><a href="module_dataschema.html" title="dataschema">dataschema</a></li> |
|
|
191 |
<li class=""><a href="module_datasource.html" title="datasource">datasource</a></li> |
|
|
192 |
<li class=""><a href="module_datatype.html" title="datatype">datatype</a></li> |
|
|
193 |
<li class=""><a href="module_dd.html" title="dd">dd</a></li> |
|
|
194 |
<li class=""><a href="module_dom.html" title="dom">dom</a></li> |
|
|
195 |
<li class=""><a href="module_dump.html" title="dump">dump</a></li> |
|
|
196 |
<li class=""><a href="module_event.html" title="event">event</a></li> |
|
|
197 |
<li class="selected"><a href="module_event-custom.html" title="event-custom">event-custom</a></li> |
|
|
198 |
<li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li> |
|
|
199 |
<li class=""><a href="module_history.html" title="history">history</a></li> |
|
|
200 |
<li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li> |
|
|
201 |
<li class=""><a href="module_io.html" title="io">io</a></li> |
|
|
202 |
<li class=""><a href="module_json.html" title="json">json</a></li> |
|
|
203 |
<li class=""><a href="module_node.html" title="node">node</a></li> |
|
|
204 |
<li class=""><a href="module_node-focusmanager.html" title="node-focusmanager">node-focusmanager</a></li> |
|
|
205 |
<li class=""><a href="module_node-menunav.html" title="node-menunav">node-menunav</a></li> |
|
|
206 |
<li class=""><a href="module_oop.html" title="oop">oop</a></li> |
|
|
207 |
<li class=""><a href="module_overlay.html" title="overlay">overlay</a></li> |
|
|
208 |
<li class=""><a href="module_plugin.html" title="plugin">plugin</a></li> |
|
|
209 |
<li class=""><a href="module_profiler.html" title="profiler">profiler</a></li> |
|
|
210 |
<li class=""><a href="module_queue.html" title="queue">queue</a></li> |
|
|
211 |
<li class=""><a href="module_slider.html" title="slider">slider</a></li> |
|
|
212 |
<li class=""><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li> |
|
|
213 |
<li class=""><a href="module_substitute.html" title="substitute">substitute</a></li> |
|
|
214 |
<li class=""><a href="module_test.html" title="test">test</a></li> |
|
|
215 |
<li class=""><a href="module_widget.html" title="widget">widget</a></li> |
|
|
216 |
<li class=""><a href="module_widget-position.html" title="widget-position">widget-position</a></li> |
|
|
217 |
<li class=""><a href="module_widget-position-ext.html" title="widget-position-ext">widget-position-ext</a></li> |
|
|
218 |
<li class=""><a href="module_widget-stack.html" title="widget-stack">widget-stack</a></li> |
|
|
219 |
<li class=""><a href="module_widget-stdmod.html" title="widget-stdmod">widget-stdmod</a></li> |
|
|
220 |
<li class=""><a href="module_yui.html" title="yui">yui</a></li> |
|
|
221 |
</ul> |
|
|
222 |
</div> |
|
|
223 |
|
|
|
224 |
<div id="classList" class="module"> |
|
|
225 |
<h4>Classes</h4> |
|
|
226 |
<ul class="content"> |
|
|
227 |
<li class=""><a href="CustomEvent.html" title="CustomEvent">CustomEvent</a></li> |
|
|
228 |
<li class=""><a href="Do.html" title="Do">Do</a></li> |
|
|
229 |
<li class=""><a href="Do.AlterArgs.html" title="Do.AlterArgs">Do.AlterArgs</a></li> |
|
|
230 |
<li class=""><a href="Do.AlterReturn.html" title="Do.AlterReturn">Do.AlterReturn</a></li> |
|
|
231 |
<li class=""><a href="Do.Error.html" title="Do.Error">Do.Error</a></li> |
|
|
232 |
<li class=""><a href="Do.Halt.html" title="Do.Halt">Do.Halt</a></li> |
|
|
233 |
<li class=""><a href="Do.Method.html" title="Do.Method">Do.Method</a></li> |
|
|
234 |
<li class=""><a href="Do.Prevent.html" title="Do.Prevent">Do.Prevent</a></li> |
|
|
235 |
<li class=""><a href="EventFacade.html" title="EventFacade">EventFacade</a></li> |
|
|
236 |
<li class=""><a href="EventHandle.html" title="EventHandle">EventHandle</a></li> |
|
|
237 |
<li class=""><a href="EventTarget.html" title="EventTarget">EventTarget</a></li> |
|
|
238 |
<li class=""><a href="Subscriber.html" title="Subscriber">Subscriber</a></li> |
|
|
239 |
</ul> |
|
|
240 |
</div> |
|
|
241 |
|
|
|
242 |
<div id="fileList" class="module"> |
|
|
243 |
<h4>Files</h4> |
|
|
244 |
<ul class="content"> |
|
|
245 |
<li class=""><a href="event-custom.js.html" title="event-custom.js">event-custom.js</a></li> |
|
|
246 |
<li class=""><a href="event-do.js.html" title="event-do.js">event-do.js</a></li> |
|
|
247 |
<li class="selected"><a href="event-facade.js.html" title="event-facade.js">event-facade.js</a></li> |
|
|
248 |
<li class=""><a href="event-target.js.html" title="event-target.js">event-target.js</a></li> |
|
|
249 |
<li class=""><a href="event.js.html" title="event.js">event.js</a></li> |
|
|
250 |
</ul> |
|
|
251 |
</div> |
|
|
252 |
|
|
|
253 |
|
|
|
254 |
|
|
|
255 |
|
|
|
256 |
|
|
|
257 |
</div> |
|
|
258 |
</div> |
|
|
259 |
</div> |
|
|
260 |
<div id="ft"> |
|
|
261 |
<hr /> |
|
|
262 |
Copyright © 2009 Yahoo! Inc. All rights reserved. |
|
|
263 |
</div> |
|
|
264 |
</div> |
|
|
265 |
<script type="text/javascript"> |
|
|
266 |
ALL_YUI_PROPS = [{"access": "", "host": "EventTarget", "name": "addTarget", "url": "EventTarget.html#method_addTarget", "type": "method"}, {"access": "", "host": "EventTarget", "name": "after", "url": "EventTarget.html#method_after", "type": "method"}, {"access": "", "host": "Do", "name": "after", "url": "Do.html#method_after", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "after", "url": "CustomEvent.html#method_after", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "afters", "url": "CustomEvent.html#property_afters", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "applyConfig", "url": "CustomEvent.html#method_applyConfig", "type": "method"}, {"access": "", "host": "Subscriber", "name": "args", "url": "Subscriber.html#property_args", "type": "property"}, {"access": "", "host": "EventTarget", "name": "before", "url": "EventTarget.html#method_before", "type": "method"}, {"access": "", "host": "Do", "name": "before", "url": "Do.html#method_before", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "broadcast", "url": "CustomEvent.html#property_broadcast", "type": "property"}, {"access": "", "host": "EventTarget", "name": "bubble", "url": "EventTarget.html#method_bubble", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "bubbles", "url": "CustomEvent.html#property_bubbles", "type": "property"}, {"access": "", "host": "Subscriber", "name": "contains", "url": "Subscriber.html#method_contains", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "context", "url": "CustomEvent.html#property_context", "type": "property"}, {"access": "", "host": "Subscriber", "name": "context", "url": "Subscriber.html#property_context", "type": "property"}, {"access": "", "host": "EventFacade", "name": "currentTarget", "url": "EventFacade.html#property_currentTarget", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "defaultFn", "url": "CustomEvent.html#property_defaultFn", "type": "property"}, {"access": "", "host": "Do.Method", "name": "delete", "url": "Do.Method.html#method_delete", "type": "method"}, {"access": "private", "host": "CustomEvent", "name": "_delete", "url": "CustomEvent.html#method__delete", "type": "method"}, {"access": "", "host": "EventTarget", "name": "detach", "url": "EventTarget.html#method_detach", "type": "method"}, {"access": "", "host": "Do", "name": "detach", "url": "Do.html#method_detach", "type": "method"}, {"access": "", "host": "EventHandle", "name": "detach", "url": "EventHandle.html#method_detach", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "detach", "url": "CustomEvent.html#method_detach", "type": "method"}, {"access": "", "host": "EventTarget", "name": "detachAll", "url": "EventTarget.html#method_detachAll", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "detachAll", "url": "CustomEvent.html#method_detachAll", "type": "method"}, {"access": "", "host": "EventFacade", "name": "details", "url": "EventFacade.html#property_details", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "emitFacade", "url": "CustomEvent.html#property_emitFacade", "type": "property"}, {"access": "", "host": "Subscriber", "name": "events", "url": "Subscriber.html#property_events", "type": "property"}, {"access": "", "host": "EventHandle", "name": "evt", "url": "EventHandle.html#property_evt", "type": "property"}, {"access": "", "host": "Do.Method", "name": "exec", "url": "Do.Method.html#method_exec", "type": "method"}, {"access": "", "host": "EventTarget", "name": "fire", "url": "EventTarget.html#method_fire", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "fire", "url": "CustomEvent.html#method_fire", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "fired", "url": "CustomEvent.html#property_fired", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "fireOnce", "url": "CustomEvent.html#property_fireOnce", "type": "property"}, {"access": "", "host": "Subscriber", "name": "fn", "url": "Subscriber.html#property_fn", "type": "property"}, {"access": "", "host": "EventTarget", "name": "getEvent", "url": "EventTarget.html#method_getEvent", "type": "method"}, {"access": "private", "host": "EventTarget", "name": "_getType", "url": "EventTarget.html#method__getType", "type": "method"}, {"access": "", "host": "EventFacade", "name": "halt", "url": "EventFacade.html#method_halt", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "halt", "url": "CustomEvent.html#method_halt", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "host", "url": "CustomEvent.html#property_host", "type": "property"}, {"access": "", "host": "Subscriber", "name": "id", "url": "Subscriber.html#property_id", "type": "property"}, {"access": "private", "host": "Do", "name": "_inject", "url": "Do.html#method__inject", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "log", "url": "CustomEvent.html#method_log", "type": "method"}, {"access": "private", "host": "CustomEvent", "name": "_notify", "url": "CustomEvent.html#method__notify", "type": "method"}, {"access": "", "host": "Subscriber", "name": "notify", "url": "Subscriber.html#method_notify", "type": "method"}, {"access": "", "host": "Do", "name": "objs", "url": "Do.html#property_objs", "type": "property"}, {"access": "", "host": "EventTarget", "name": "on", "url": "EventTarget.html#method_on", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "on", "url": "CustomEvent.html#method_on", "type": "method"}, {"access": "private", "host": "EventTarget", "name": "_parseType", "url": "EventTarget.html#method__parseType", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "preventable", "url": "CustomEvent.html#property_preventable", "type": "property"}, {"access": "", "host": "EventFacade", "name": "preventDefault", "url": "EventFacade.html#method_preventDefault", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "preventDefault", "url": "CustomEvent.html#method_preventDefault", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "prevented", "url": "CustomEvent.html#property_prevented", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "preventedFn", "url": "CustomEvent.html#property_preventedFn", "type": "property"}, {"access": "", "host": "EventTarget", "name": "publish", "url": "EventTarget.html#method_publish", "type": "method"}, {"access": "", "host": "Do.Method", "name": "register", "url": "Do.Method.html#method_register", "type": "method"}, {"access": "", "host": "EventFacade", "name": "relatedTarget", "url": "EventFacade.html#property_relatedTarget", "type": "property"}, {"access": "", "host": "EventTarget", "name": "removeTarget", "url": "EventTarget.html#method_removeTarget", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "signature", "url": "CustomEvent.html#property_signature", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "silent", "url": "CustomEvent.html#property_silent", "type": "property"}, {"access": "", "host": "EventFacade", "name": "stopImmediatePropagation", "url": "EventFacade.html#method_stopImmediatePropagation", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "stopImmediatePropagation", "url": "CustomEvent.html#method_stopImmediatePropagation", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "stopped", "url": "CustomEvent.html#property_stopped", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "stoppedFn", "url": "CustomEvent.html#property_stoppedFn", "type": "property"}, {"access": "", "host": "EventFacade", "name": "stopPropagation", "url": "EventFacade.html#method_stopPropagation", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "stopPropagation", "url": "CustomEvent.html#method_stopPropagation", "type": "method"}, {"access": "", "host": "EventHandle", "name": "sub", "url": "EventHandle.html#property_sub", "type": "property"}, {"access": "", "host": "EventTarget", "name": "subscribe", "url": "EventTarget.html#method_subscribe", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "subscribe", "url": "CustomEvent.html#method_subscribe", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "subscribers", "url": "CustomEvent.html#property_subscribers", "type": "property"}, {"access": "", "host": "EventFacade", "name": "target", "url": "EventFacade.html#property_target", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "toString", "url": "CustomEvent.html#method_toString", "type": "method"}, {"access": "", "host": "Subscriber", "name": "toString", "url": "Subscriber.html#method_toString", "type": "method"}, {"access": "", "host": "EventFacade", "name": "type", "url": "EventFacade.html#property_type", "type": "property"}, {"access": "", "host": "CustomEvent", "name": "type", "url": "CustomEvent.html#property_type", "type": "property"}, {"access": "", "host": "EventTarget", "name": "unsubscribe", "url": "EventTarget.html#method_unsubscribe", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "unsubscribe", "url": "CustomEvent.html#method_unsubscribe", "type": "method"}, {"access": "", "host": "EventTarget", "name": "unsubscribeAll", "url": "EventTarget.html#method_unsubscribeAll", "type": "method"}, {"access": "", "host": "CustomEvent", "name": "unsubscribeAll", "url": "CustomEvent.html#method_unsubscribeAll", "type": "method"}]; |
|
|
267 |
</script> |
|
|
268 |
</body> |
|
|
269 |
</html> |