-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathexternal.jsdoc
592 lines (485 loc) · 14.1 KB
/
external.jsdoc
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
/**
* A kind is an object constructor created using the enyo.kind factory method.
*
* @glossary kind
* @see module:enyo/kind
*/
/**
* A set of properties from one or more objects to be added or "mixed in" to a single object.
*
* @glossary mixin
* @see enyo.mixin
*/
/**
* A message-passing strategy for indirect communication between components.
*
* @glossary event
* @see http://enyojs.com/docs/latest/developer-guide/key-concepts/event-handling.html
*/
/**
* A unique identifier that follows and Enyo specific format consisting of an optional prefix followed by a number.
*
* @glossary EUID
*/
/**
* An object that provides a specified set of functionalities to another object.
*
* @glossary delegate
*/
/**
* A function that is called in the context of a new object when that object is created
* @glossary constructor
*/
/**
* A JavaScript object that defines various properties to be initialized on the component.
* @glossary configurationBlock
*/
/**
* Non-client sub-components of a component.
* @glossary chrome
*/
/**
* A kind that inherits from another kind
*
* @glossary subkind
*/
/**
* Code whose execution has been delayed until a later time.
*
* @glossary deferred
*/
/**
* The arrangement of controls on a page or view. The Enyo layout library provides a collection of techniques for laying out controls.
*
* @glossary layout
* @see https://github.com/enyojs/layout
*/
/**
* JSON.stringify turns an object into a text string.
*
* @glossary JSON.stringify
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
*/
/**
* JSONP or "JSON with padding" is a communication technique used in JavaScript programs running in web browsers to request data from a server in a different domain, something prohibited by typical web browsers because of the same-origin policy.
*
* @glossary JSONP
* @see http://en.wikipedia.org/wiki/JSONP
*/
/**
* An event that fires when a service progresses.
*
* @glossary ProgressEvent
*/
/**
* Spotlight is an extensible utility that enables users to navigate Enyo applications using a keyboard or television remote control.
*
* @glossary Spotlight
* @see https://github.com/enyojs/spotlight
*/
/**
* A library of i18n routines written in Javascript
*
* @glossary ilib
* @see http://sourceforge.net/p/i18nlib/wiki/iLib%20-%20an%20internationalization%20library%20written%20in%20Javascript/
*/
/**
* One of two boolean data type values
*
* @glossary true
*/
/**
* One of two boolean data type values
*
* @glossary false
*/
/**
* The value null is a JavaScript literal representing null or an "empty" value, i.e. no object value is present.
*
* @glossary null
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null
*/
/**
* The Number object is an object wrapper for a numerical value.
*
* @glossary Number
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number
*/
/**
* number is a JavaScript data type that can have a double-precision 64-bit binary format IEEE 754 numerical value.
*
* @glossary number
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures
*/
/**
* The Boolean object is an object wrapper for a boolean value.
*
* @glossary Boolean
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean
*/
/**
* boolean is a JavaScript data type that can have one of two values; true or false
*
* @glossary boolean
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures
*/
/**
* A property whose value is bound to that of one or more dependent properties. When the value of a dependent property changes, the value of the computed property is automatically recalculated.
*
* @glossary computed_property
*/
/**
* Methods and properties marked as private should not be used by developers. They may be changed or
* removed without notice and their particular implementations should not be relied upon. Kinds and
* modules marked as private are inteded for use only by the framework.
*
* @glossary private
*/
/**
* Methods and properties marked as protected should only be used when subclassing a kind. They
* represent the internal workings of a kind and should not be used by outside kinds. Protected kinds
* and modules are not intended to be instantiated directly by developers.
*
* @glossary protected
*/
///// Internally Documented Links (Glossary) /////
/**
* Binary (bitwise) operations.
*
* @glossary bitwise
* @see http://www.experts-exchange.com/Programming/Misc/A_1842-Binary-Bit-Flags-Tutorial-and-Usage-Tips.html
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators
*/
/**
* Strict Equality. This comparison logic ensures not only that the value of the things being
* compared is the same, but also their types.
*
* @glossary ===
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators#Using_the_Equality_Operators
*/
/**
* A "polyfill" describes a method or function that is added to older browsers
* that don't support a native version of said method, in an effort to bring the
* browser up to the standards of modern browsers. This allows code that expects
* a modern browser to work properly in an older one.
*
* @glossary polyfill
* @see http://en.wikipedia.org/wiki/Polyfill
*/
/**
* The Document Object Model (DOM) is a programming interface for HTML and XML documents.
*
* @glossary DOM
* @see https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model
*/
///// Externally Documented Links /////
/**
* Inheritance
* @glossary inheritance
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Inheritance_and_the_prototype_chain
*/
/**
* Universally Unique Identifier
* @glossary UUID
* @see http://en.wikipedia.org/wiki/Universally_unique_identifier
*/
/**
* @glossary callback
* @see https://developer.mozilla.org/en-US/docs/Mozilla/js-ctypes/js-ctypes_reference/Callbacks
*/
/**
* @glossary entity
* @see http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references
*/
/**
* @glossary undefined
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined
*/
/**
* @glossary arguments
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope/arguments
*/
/**
* @glossary String
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String
*/
/**
* @glossary Function
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
*/
/**
* @glossary Array
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
*/
/**
* @glossary Array.indexOf
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf
* @see http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.14
*/
/**
* @glossary Array.lastIndexOf
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf
* http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.15
*/
/**
* @glossary Array.findIndex
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex
*/
/**
* @glossary Array.find
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find
*/
/**
* @glossary Array.forEach
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
* @see http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.18
*/
/**
* @glossary Array.map
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map
* @see http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.19
*/
/**
* @glossary Array.filter
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter
* @see http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.20
*/
/**
* @glossary Array.join
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join
*/
/**
* @glossary Object
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
*/
/**
* @glossary Object.prototype
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/prototype
*/
/**
* @glossary Object.create
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/create
*/
/**
* @glossary Object.hasOwnProperty
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty
*/
/**
* @glossary Object.keys
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys
*/
/**
* @glossary window
* @see https://developer.mozilla.org/en-US/docs/Web/API/Window
*/
/**
* @glossary window.getComputedStyle
* @see https://developer.mozilla.org/en-US/docs/Web/API/Window.getComputedStyle
*/
/**
* @glossary window.getComputedStyleValue
* @see https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/NsIAccessNode#getComputedStyleValue()
*/
/**
* @glossary window.location
* @see https://developer.mozilla.org/en-US/docs/Web/API/Window.location
*/
/**
* @glossary window.performance
* @see https://developer.mozilla.org/en-US/docs/Web/API/Window.performance
*/
/**
* @glossary window.setTimeout
* @see https://developer.mozilla.org/en-US/docs/Web/API/Window.setTimeout
*/
/**
* @glossary Date
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
*/
/**
* @glossary Date.now
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now
*/
/**
* @glossary Date.getTime
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime
*/
/**
* @glossary console
* @see https://developer.mozilla.org/en-US/docs/Web/API/console
*/
/**
* @glossary console.log
* @see https://developer.mozilla.org/en-US/docs/Web/API/console.log
*/
/**
* @glossary console.warn
* @see https://developer.mozilla.org/en-US/docs/Web/API/console.warn
*/
/**
* @glossary console.error
* @see https://developer.mozilla.org/en-US/docs/Web/API/console.error
*/
/**
* @glossary DOM
* @see https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model
*/
/**
* @glossary Node
* @see https://developer.mozilla.org/en-US/docs/Web/API/Node
*/
/**
* @glossary Anchor
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
*/
/**
* @glossary Attribute
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes
*/
/**
* @glossary audio
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
*/
/**
* @glossary button
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
*/
/**
* @glossary form
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
*/
/**
* @glossary input
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input
*/
/**
* @glossary img
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Img
*/
/**
* @glossary focus
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement.focus
*/
/**
* @glossary blur
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement.blur
*/
/**
* @glossary iframe
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
*/
/**
* @glossary script
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
*/
/**
* @glossary select
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
*/
/**
* @glossary option
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
*/
/**
* @glossary optgroup
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
*/
/**
* @glossary style
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
*/
/**
* @glossary table
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
*/
/**
* @glossary tr
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
*/
/**
* @glossary td
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
*/
/**
* @glossary textarea
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
*/
/**
* @glossary video
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
*/
/**
* @glossary scrollIntoView
* @see https://developer.mozilla.org/en-US/docs/Web/API/Element.scrollIntoView
*/
/**
* @glossary HTML5MediaElement
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement
*/
/**
* @glossary backgroundPosition
* @see https://developer.mozilla.org/en-US/docs/Web/CSS/background-position
*/
/**
* @glossary DOMEvent
* @see https://developer.mozilla.org/en-US/docs/Web/API/Event
*/
/**
* @glossary TimeRanges
* @see https://developer.mozilla.org/en-US/docs/Web/API/TimeRanges
*/
/**
* @glossary Selection
* @see https://developer.mozilla.org/en-US/docs/Web/API/Selection
*/
/**
* @glossary Selection.collapseToStart
* @see https://developer.mozilla.org/en-US/docs/Web/API/Selection.collapseToStart
*/
/**
* @glossary Selection.collapseToEnd
* @see https://developer.mozilla.org/en-US/docs/Web/API/Selection.collapseToEnd
*/
/**
* @glossary Selection.modify
* @see https://developer.mozilla.org/en-US/docs/Web/API/Selection.modify
*/
/**
* @glossary Range
* @see https://developer.mozilla.org/en-US/docs/Web/API/range
*/
/**
* @glossary fullscreen
* @see https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Using_full_screen_mode
*/
/**
* @todo Find a better external source
* @glossary networkState
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement#Properties
*/
/**
* @todo Find a better external source
* @glossary readyState
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement#Properties
*/
///// Common Type Definitions /////
/**
* A [DOM]{@glossary DOM} [node]{@glossary Node} element [object]{@glossary Object}.
*
* @typedef {Node}
*/
/**
* A {@glossary TimeRanges} element {@glossary Object}.
*
* @typedef {TimeRanges}
*/
/**
* A {@glossary readyState} value.
*
* @typedef {ReadyState}
*/
/**
* A {@glossary Selection} [object]{@glossary Object}.
*
* @typedef {Selection}
*/