@creative-web-solution/front-library 6.1.3 → 6.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. package/CHANGELOG.md +52 -1
  2. package/DOM/Class.js +1 -1
  3. package/DOM/OuterSize.js +1 -1
  4. package/DOM/matrix.js +1 -1
  5. package/DOM/size.js +1 -1
  6. package/DOM/wrap.js +2 -2
  7. package/Events/EventsManager.js +39 -81
  8. package/Events/HistoryController.js +3 -3
  9. package/Events/ImageLoad.js +1 -1
  10. package/Events/IntersectObserver.js +3 -2
  11. package/Events/KeyboardHandler.js +2 -2
  12. package/Events/MediaQueriesEvents.js +2 -2
  13. package/Events/TouchHover.js +3 -3
  14. package/Events/WindowEvents.js +3 -3
  15. package/Events/gesture.js +2 -2
  16. package/Events/onAnimationEnd.js +37 -33
  17. package/Events/onTransitionEnd.js +38 -29
  18. package/Events/pubSub.js +2 -2
  19. package/Helpers/Cookie.js +1 -1
  20. package/Helpers/TransitionHelpers.js +95 -0
  21. package/Helpers/extend.js +1 -1
  22. package/Helpers/getValue.js +1 -1
  23. package/Helpers/sequential.js +1 -1
  24. package/Helpers/wait.js +1 -1
  25. package/ModernizrAddons/css-var-support.js +3 -0
  26. package/ModernizrAddons/touchdevice.js +1 -1
  27. package/Modules/Accordion.js +12 -6
  28. package/Modules/Autocomplete.js +7 -7
  29. package/Modules/DragSlider.js +583 -0
  30. package/Modules/Notifications.js +8 -8
  31. package/Modules/Popin.js +8 -8
  32. package/Modules/ScrollSnap.js +8 -8
  33. package/Modules/SkinCheckbox.js +2 -2
  34. package/Modules/SkinFile.js +4 -4
  35. package/Modules/SkinRadio.js +3 -3
  36. package/Modules/SkinSelect.js +12 -12
  37. package/Modules/Slider.js +100 -32
  38. package/Modules/Tabs.js +5 -5
  39. package/Modules/Validator/Tools/RadioButton.js +1 -1
  40. package/Modules/Validator/Tools/ValidationState.js +1 -1
  41. package/Modules/Validator/Tools/getQueryFromForm.js +1 -1
  42. package/Modules/Validator/date.js +3 -3
  43. package/Modules/Validator/email.js +3 -3
  44. package/Modules/Validator/equals.js +3 -3
  45. package/Modules/Validator/index.js +6 -6
  46. package/Modules/Validator/max.js +2 -2
  47. package/Modules/Validator/maxlength.js +2 -2
  48. package/Modules/Validator/min.js +2 -2
  49. package/Modules/Validator/minlength.js +2 -2
  50. package/Modules/Validator/multiRequired.js +5 -5
  51. package/Modules/Validator/number.js +3 -3
  52. package/Modules/Validator/pattern.js +2 -2
  53. package/Modules/Validator/recaptcha.js +2 -2
  54. package/Modules/Validator/required.js +4 -4
  55. package/Modules/Validator/serverCheck.js +3 -3
  56. package/Modules/Validator/url.js +3 -3
  57. package/Modules/YouTubePlayer.js +2 -2
  58. package/Modules/globalState.js +1 -1
  59. package/README.md +3 -3
  60. package/Tools/PrefixedProperties.js +54 -0
  61. package/Tools/TouchDeviceSupport.js +1 -0
  62. package/WebGL/GLImageTransition/GLImageTransition.js +4 -4
  63. package/documentation/extra/events.md +2 -2
  64. package/documentation/extra/modernizr.md +1 -0
  65. package/documentation/extra/modules/DragSlider.md +111 -0
  66. package/documentation/extra/modules/YouTubePlayer.md +1 -1
  67. package/documentation/extra/modules/autocomplete.md +1 -1
  68. package/documentation/extra/modules/popin.md +3 -3
  69. package/documentation/extra/modules/slider.md +7 -3
  70. package/documentation/extra/modules/template.md +1 -1
  71. package/documentation/extra/modules/validator.md +13 -13
  72. package/documentation/extra/webgl/GLImageTransition.md +1 -1
  73. package/documentation/jsdocs/dom/global.html +389 -2
  74. package/documentation/jsdocs/dom/index.html +2 -2
  75. package/documentation/jsdocs/dom/quicksearch.html +1 -1
  76. package/documentation/jsdocs/events/common/DeviceOrientation.html +1 -1
  77. package/documentation/jsdocs/events/common/HistoryController.html +1 -1
  78. package/documentation/jsdocs/events/common/IntersectObserver.html +1 -1
  79. package/documentation/jsdocs/events/common/KeyboardHandler.html +1 -1
  80. package/documentation/jsdocs/events/common/MediaQueriesEvents.html +1 -1
  81. package/documentation/jsdocs/events/common/TouchHover.html +1 -1
  82. package/documentation/jsdocs/events/common/WindowEvents.html +1 -1
  83. package/documentation/jsdocs/events/common/classes.list.html +1 -1
  84. package/documentation/jsdocs/events/common/global.html +1 -1
  85. package/documentation/jsdocs/events/common/index.html +1 -1
  86. package/documentation/jsdocs/events/common/namespaces.list.html +1 -1
  87. package/documentation/jsdocs/events/common/pubSub.html +1 -1
  88. package/documentation/jsdocs/events/common/quicksearch.html +1 -1
  89. package/documentation/jsdocs/events/events-manager/global.html +1 -1
  90. package/documentation/jsdocs/events/events-manager/index.html +1 -1
  91. package/documentation/jsdocs/events/events-manager/quicksearch.html +1 -1
  92. package/documentation/jsdocs/events/gesture/global.html +1 -1
  93. package/documentation/jsdocs/events/gesture/index.html +1 -1
  94. package/documentation/jsdocs/events/gesture/quicksearch.html +1 -1
  95. package/documentation/jsdocs/helpers/array/global.html +1 -1
  96. package/documentation/jsdocs/helpers/array/index.html +1 -1
  97. package/documentation/jsdocs/helpers/array/quicksearch.html +1 -1
  98. package/documentation/jsdocs/helpers/colors/global.html +1 -1
  99. package/documentation/jsdocs/helpers/colors/index.html +1 -1
  100. package/documentation/jsdocs/helpers/colors/quicksearch.html +1 -1
  101. package/documentation/jsdocs/helpers/common/Cookie.html +2 -2
  102. package/documentation/jsdocs/helpers/common/UrlParser.html +1 -1
  103. package/documentation/jsdocs/helpers/common/classes.list.html +1 -1
  104. package/documentation/jsdocs/helpers/common/global.html +8 -2
  105. package/documentation/jsdocs/helpers/common/index.html +1 -1
  106. package/documentation/jsdocs/helpers/common/quicksearch.html +1 -1
  107. package/documentation/jsdocs/helpers/types/global.html +1 -1
  108. package/documentation/jsdocs/helpers/types/index.html +1 -1
  109. package/documentation/jsdocs/helpers/types/quicksearch.html +1 -1
  110. package/documentation/jsdocs/modules/accordion/Accordion.html +1 -1
  111. package/documentation/jsdocs/modules/accordion/classes.list.html +1 -1
  112. package/documentation/jsdocs/modules/accordion/index.html +1 -1
  113. package/documentation/jsdocs/modules/accordion/quicksearch.html +1 -1
  114. package/documentation/jsdocs/modules/autocomplete/Autocomplete.html +1 -1
  115. package/documentation/jsdocs/modules/autocomplete/classes.list.html +1 -1
  116. package/documentation/jsdocs/modules/autocomplete/index.html +1 -1
  117. package/documentation/jsdocs/modules/autocomplete/quicksearch.html +1 -1
  118. package/documentation/jsdocs/modules/common/DragSlider.html +946 -0
  119. package/documentation/jsdocs/modules/common/classes.list.html +310 -0
  120. package/documentation/jsdocs/modules/common/global.html +8 -1
  121. package/documentation/jsdocs/modules/common/globalState.html +8 -1
  122. package/documentation/jsdocs/modules/common/index.html +8 -1
  123. package/documentation/jsdocs/modules/common/namespaces.list.html +15 -1
  124. package/documentation/jsdocs/modules/common/quicksearch.html +1 -1
  125. package/documentation/jsdocs/modules/form-skin/SkinCheckbox.html +1 -1
  126. package/documentation/jsdocs/modules/form-skin/SkinFile.html +1 -1
  127. package/documentation/jsdocs/modules/form-skin/SkinRadio.html +1 -1
  128. package/documentation/jsdocs/modules/form-skin/SkinSelect.html +1 -1
  129. package/documentation/jsdocs/modules/form-skin/classes.list.html +1 -1
  130. package/documentation/jsdocs/modules/form-skin/global.html +1 -1
  131. package/documentation/jsdocs/modules/form-skin/index.html +1 -1
  132. package/documentation/jsdocs/modules/form-skin/quicksearch.html +1 -1
  133. package/documentation/jsdocs/modules/media-preloader/MediaPreloader.html +1 -1
  134. package/documentation/jsdocs/modules/media-preloader/classes.list.html +1 -1
  135. package/documentation/jsdocs/modules/media-preloader/index.html +1 -1
  136. package/documentation/jsdocs/modules/media-preloader/quicksearch.html +1 -1
  137. package/documentation/jsdocs/modules/notifications/Notifications.html +1 -1
  138. package/documentation/jsdocs/modules/notifications/classes.list.html +1 -1
  139. package/documentation/jsdocs/modules/notifications/index.html +1 -1
  140. package/documentation/jsdocs/modules/notifications/quicksearch.html +1 -1
  141. package/documentation/jsdocs/modules/popin/Popin.html +1 -1
  142. package/documentation/jsdocs/modules/popin/PopinController.html +1 -1
  143. package/documentation/jsdocs/modules/popin/classes.list.html +1 -1
  144. package/documentation/jsdocs/modules/popin/index.html +1 -1
  145. package/documentation/jsdocs/modules/popin/quicksearch.html +1 -1
  146. package/documentation/jsdocs/modules/scroll-snap/ScrollSnap.html +1 -1
  147. package/documentation/jsdocs/modules/scroll-snap/classes.list.html +1 -1
  148. package/documentation/jsdocs/modules/scroll-snap/index.html +1 -1
  149. package/documentation/jsdocs/modules/scroll-snap/quicksearch.html +1 -1
  150. package/documentation/jsdocs/modules/slider/Slider.html +1 -1
  151. package/documentation/jsdocs/modules/slider/SliderControls.html +159 -2
  152. package/documentation/jsdocs/modules/slider/classes.list.html +1 -1
  153. package/documentation/jsdocs/modules/slider/index.html +1 -1
  154. package/documentation/jsdocs/modules/slider/quicksearch.html +1 -1
  155. package/documentation/jsdocs/modules/tabs/Tabs.html +1 -1
  156. package/documentation/jsdocs/modules/tabs/classes.list.html +1 -1
  157. package/documentation/jsdocs/modules/tabs/index.html +1 -1
  158. package/documentation/jsdocs/modules/tabs/quicksearch.html +1 -1
  159. package/documentation/jsdocs/modules/validator/Validator.html +1 -1
  160. package/documentation/jsdocs/modules/validator/classes.list.html +1 -1
  161. package/documentation/jsdocs/modules/validator/global.html +1 -1
  162. package/documentation/jsdocs/modules/validator/index.html +1 -1
  163. package/documentation/jsdocs/modules/validator/quicksearch.html +1 -1
  164. package/documentation/jsdocs/modules/youtube-player/YouTubePlayer.html +1 -1
  165. package/documentation/jsdocs/modules/youtube-player/classes.list.html +1 -1
  166. package/documentation/jsdocs/modules/youtube-player/index.html +1 -1
  167. package/documentation/jsdocs/modules/youtube-player/quicksearch.html +1 -1
  168. package/package.json +1 -1
@@ -0,0 +1,946 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta name="viewport" content="width=device-width">
7
+ <title>Documentation Class: DragSlider</title>
8
+
9
+ <!--[if lt IE 9]>
10
+ <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
+ <![endif]-->
12
+ <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
13
+
14
+ <link type="text/css" rel="stylesheet" href="styles/site.simplex.css">
15
+
16
+ </head>
17
+
18
+ <body>
19
+
20
+ <div class="navbar navbar-default navbar-fixed-top ">
21
+ <div class="container">
22
+ <div class="navbar-header">
23
+ <a class="navbar-brand" href="index.html">Documentation</a>
24
+ <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#topNavigation">
25
+ <span class="icon-bar"></span>
26
+ <span class="icon-bar"></span>
27
+ <span class="icon-bar"></span>
28
+ </button>
29
+ </div>
30
+ <div class="navbar-collapse collapse" id="topNavigation">
31
+ <ul class="nav navbar-nav">
32
+
33
+ <li class="dropdown">
34
+ <a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b class="caret"></b></a>
35
+ <ul class="dropdown-menu ">
36
+ <li><a href="globalState.html">globalState</a></li>
37
+ </ul>
38
+ </li>
39
+
40
+ <li class="dropdown">
41
+ <a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b class="caret"></b></a>
42
+ <ul class="dropdown-menu ">
43
+ <li><a href="DragSlider.html">DragSlider</a></li>
44
+ </ul>
45
+ </li>
46
+
47
+ <li class="dropdown">
48
+ <a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b class="caret"></b></a>
49
+ <ul class="dropdown-menu ">
50
+ <li><a href="global.html#loadGMap">loadGMap</a></li><li><a href="global.html#quickTemplate">quickTemplate</a></li><li><a href="global.html#template">template</a></li>
51
+ </ul>
52
+ </li>
53
+
54
+ </ul>
55
+
56
+ <div class="col-sm-3 col-md-3">
57
+ <form class="navbar-form" role="search">
58
+ <div class="input-group">
59
+ <input type="text" class="form-control" placeholder="Search" name="q" id="search-input">
60
+ <div class="input-group-btn">
61
+ <button class="btn btn-default" id="search-submit"><i class="glyphicon glyphicon-search"></i></button>
62
+ </div>
63
+ </div>
64
+ </form>
65
+ </div>
66
+
67
+ </div>
68
+
69
+ </div>
70
+ </div>
71
+
72
+
73
+ <div class="container" id="toc-content">
74
+ <div class="row">
75
+
76
+
77
+ <div class="col-md-8">
78
+
79
+ <div id="main">
80
+
81
+
82
+ <h1 class="page-title">Class: DragSlider</h1>
83
+ <section>
84
+
85
+ <header>
86
+
87
+ <h2>
88
+ DragSlider
89
+ </h2>
90
+
91
+
92
+ </header>
93
+
94
+
95
+ <article>
96
+ <div class="container-overview">
97
+
98
+
99
+ <hr>
100
+ <dt>
101
+ <h4 class="name" id="DragSlider"><span class="type-signature"></span>new DragSlider($slider, options)</h4>
102
+
103
+
104
+ </dt>
105
+ <dd>
106
+
107
+
108
+ <div class="description">
109
+ DragSlider
110
+ </div>
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+ <h5>Parameters:</h5>
120
+
121
+
122
+ <table class="params table table-striped">
123
+ <thead>
124
+ <tr>
125
+
126
+ <th>Name</th>
127
+
128
+
129
+ <th>Type</th>
130
+
131
+
132
+
133
+
134
+
135
+ <th class="last">Description</th>
136
+ </tr>
137
+ </thead>
138
+
139
+ <tbody>
140
+
141
+
142
+ <tr>
143
+
144
+ <td class="name"><code>$slider</code></td>
145
+
146
+
147
+ <td class="type">
148
+
149
+
150
+ <span class="param-type">HTMLElement</span>
151
+
152
+
153
+
154
+
155
+ </td>
156
+
157
+
158
+
159
+
160
+
161
+ <td class="description last"></td>
162
+ </tr>
163
+
164
+
165
+
166
+ <tr>
167
+
168
+ <td class="name"><code>options</code></td>
169
+
170
+
171
+ <td class="type">
172
+
173
+
174
+ <span class="param-type">Object</span>
175
+
176
+
177
+
178
+
179
+ </td>
180
+
181
+
182
+
183
+
184
+
185
+ <td class="description last">
186
+ <h6 class="method-params-label method-subparams-label">Properties</h6>
187
+
188
+
189
+ <table class="params table table-striped">
190
+ <thead>
191
+ <tr>
192
+
193
+ <th>Name</th>
194
+
195
+
196
+ <th>Type</th>
197
+
198
+
199
+ <th>Argument</th>
200
+
201
+
202
+
203
+ <th>Default</th>
204
+
205
+
206
+ <th class="last">Description</th>
207
+ </tr>
208
+ </thead>
209
+
210
+ <tbody>
211
+
212
+
213
+ <tr>
214
+
215
+ <td class="name"><code>viewportSelector</code></td>
216
+
217
+
218
+ <td class="type">
219
+
220
+
221
+ <span class="param-type">String</span>
222
+
223
+
224
+
225
+
226
+ </td>
227
+
228
+
229
+ <td class="attributes">
230
+
231
+
232
+
233
+
234
+
235
+ </td>
236
+
237
+
238
+
239
+ <td class="default">
240
+
241
+ </td>
242
+
243
+
244
+ <td class="description last"></td>
245
+ </tr>
246
+
247
+
248
+
249
+ <tr>
250
+
251
+ <td class="name"><code>listSelector</code></td>
252
+
253
+
254
+ <td class="type">
255
+
256
+
257
+ <span class="param-type">String</span>
258
+
259
+
260
+
261
+
262
+ </td>
263
+
264
+
265
+ <td class="attributes">
266
+
267
+
268
+
269
+
270
+
271
+ </td>
272
+
273
+
274
+
275
+ <td class="default">
276
+
277
+ </td>
278
+
279
+
280
+ <td class="description last"></td>
281
+ </tr>
282
+
283
+
284
+
285
+ <tr>
286
+
287
+ <td class="name"><code>itemSelector</code></td>
288
+
289
+
290
+ <td class="type">
291
+
292
+
293
+ <span class="param-type">String</span>
294
+
295
+
296
+
297
+
298
+ </td>
299
+
300
+
301
+ <td class="attributes">
302
+
303
+
304
+
305
+
306
+
307
+ </td>
308
+
309
+
310
+
311
+ <td class="default">
312
+
313
+ </td>
314
+
315
+
316
+ <td class="description last"></td>
317
+ </tr>
318
+
319
+
320
+
321
+ <tr>
322
+
323
+ <td class="name"><code>dragClass</code></td>
324
+
325
+
326
+ <td class="type">
327
+
328
+
329
+ <span class="param-type">String</span>
330
+
331
+
332
+
333
+
334
+ </td>
335
+
336
+
337
+ <td class="attributes">
338
+
339
+
340
+
341
+
342
+
343
+ </td>
344
+
345
+
346
+
347
+ <td class="default">
348
+
349
+ </td>
350
+
351
+
352
+ <td class="description last"></td>
353
+ </tr>
354
+
355
+
356
+
357
+ <tr>
358
+
359
+ <td class="name"><code>onStartDrag</code></td>
360
+
361
+
362
+ <td class="type">
363
+
364
+
365
+ <span class="param-type">function</span>
366
+
367
+
368
+
369
+
370
+ </td>
371
+
372
+
373
+ <td class="attributes">
374
+
375
+
376
+
377
+
378
+
379
+ </td>
380
+
381
+
382
+
383
+ <td class="default">
384
+
385
+ </td>
386
+
387
+
388
+ <td class="description last"></td>
389
+ </tr>
390
+
391
+
392
+
393
+ <tr>
394
+
395
+ <td class="name"><code>onDrag</code></td>
396
+
397
+
398
+ <td class="type">
399
+
400
+
401
+ <span class="param-type">function</span>
402
+
403
+
404
+
405
+
406
+ </td>
407
+
408
+
409
+ <td class="attributes">
410
+
411
+
412
+
413
+
414
+
415
+ </td>
416
+
417
+
418
+
419
+ <td class="default">
420
+
421
+ </td>
422
+
423
+
424
+ <td class="description last"></td>
425
+ </tr>
426
+
427
+
428
+
429
+ <tr>
430
+
431
+ <td class="name"><code>onStopDrag</code></td>
432
+
433
+
434
+ <td class="type">
435
+
436
+
437
+ <span class="param-type">function</span>
438
+
439
+
440
+
441
+
442
+ </td>
443
+
444
+
445
+ <td class="attributes">
446
+
447
+
448
+
449
+
450
+
451
+ </td>
452
+
453
+
454
+
455
+ <td class="default">
456
+
457
+ </td>
458
+
459
+
460
+ <td class="description last"></td>
461
+ </tr>
462
+
463
+
464
+
465
+ <tr>
466
+
467
+ <td class="name"><code>onSnap</code></td>
468
+
469
+
470
+ <td class="type">
471
+
472
+
473
+ <span class="param-type">function</span>
474
+
475
+
476
+
477
+
478
+ </td>
479
+
480
+
481
+ <td class="attributes">
482
+
483
+
484
+
485
+
486
+
487
+ </td>
488
+
489
+
490
+
491
+ <td class="default">
492
+
493
+ </td>
494
+
495
+
496
+ <td class="description last"></td>
497
+ </tr>
498
+
499
+
500
+
501
+ <tr>
502
+
503
+ <td class="name"><code>onSnapUpdate</code></td>
504
+
505
+
506
+ <td class="type">
507
+
508
+
509
+ <span class="param-type">function</span>
510
+
511
+
512
+
513
+
514
+ </td>
515
+
516
+
517
+ <td class="attributes">
518
+
519
+
520
+
521
+
522
+
523
+ </td>
524
+
525
+
526
+
527
+ <td class="default">
528
+
529
+ </td>
530
+
531
+
532
+ <td class="description last"></td>
533
+ </tr>
534
+
535
+
536
+
537
+ <tr>
538
+
539
+ <td class="name"><code>onMouseEnter</code></td>
540
+
541
+
542
+ <td class="type">
543
+
544
+
545
+ <span class="param-type">function</span>
546
+
547
+
548
+
549
+
550
+ </td>
551
+
552
+
553
+ <td class="attributes">
554
+
555
+
556
+
557
+
558
+
559
+ </td>
560
+
561
+
562
+
563
+ <td class="default">
564
+
565
+ </td>
566
+
567
+
568
+ <td class="description last"></td>
569
+ </tr>
570
+
571
+
572
+
573
+ <tr>
574
+
575
+ <td class="name"><code>onMouseLeave</code></td>
576
+
577
+
578
+ <td class="type">
579
+
580
+
581
+ <span class="param-type">function</span>
582
+
583
+
584
+
585
+
586
+ </td>
587
+
588
+
589
+ <td class="attributes">
590
+
591
+
592
+
593
+
594
+
595
+ </td>
596
+
597
+
598
+
599
+ <td class="default">
600
+
601
+ </td>
602
+
603
+
604
+ <td class="description last"></td>
605
+ </tr>
606
+
607
+
608
+
609
+ <tr>
610
+
611
+ <td class="name"><code>onInit</code></td>
612
+
613
+
614
+ <td class="type">
615
+
616
+
617
+ <span class="param-type">function</span>
618
+
619
+
620
+
621
+
622
+ </td>
623
+
624
+
625
+ <td class="attributes">
626
+
627
+
628
+
629
+
630
+
631
+ </td>
632
+
633
+
634
+
635
+ <td class="default">
636
+
637
+ </td>
638
+
639
+
640
+ <td class="description last"></td>
641
+ </tr>
642
+
643
+
644
+
645
+ <tr>
646
+
647
+ <td class="name"><code>swipeTresholdMin</code></td>
648
+
649
+
650
+ <td class="type">
651
+
652
+
653
+ <span class="param-type">Number</span>
654
+
655
+
656
+
657
+
658
+ </td>
659
+
660
+
661
+ <td class="attributes">
662
+
663
+ &lt;optional><br>
664
+
665
+
666
+
667
+
668
+
669
+ </td>
670
+
671
+
672
+
673
+ <td class="default">
674
+
675
+ 40
676
+
677
+ </td>
678
+
679
+
680
+ <td class="description last">in px</td>
681
+ </tr>
682
+
683
+
684
+
685
+ <tr>
686
+
687
+ <td class="name"><code>swipeTresholdSize</code></td>
688
+
689
+
690
+ <td class="type">
691
+
692
+
693
+ <span class="param-type">Number</span>
694
+
695
+
696
+
697
+
698
+ </td>
699
+
700
+
701
+ <td class="attributes">
702
+
703
+ &lt;optional><br>
704
+
705
+
706
+
707
+
708
+
709
+ </td>
710
+
711
+
712
+
713
+ <td class="default">
714
+
715
+ 0.5
716
+
717
+ </td>
718
+
719
+
720
+ <td class="description last">in % (0.5 = 50% of the size of one item)</td>
721
+ </tr>
722
+
723
+
724
+ </tbody>
725
+ </table>
726
+
727
+ </td>
728
+ </tr>
729
+
730
+
731
+ </tbody>
732
+ </table>
733
+
734
+
735
+
736
+
737
+ <dl class="details">
738
+
739
+
740
+
741
+
742
+
743
+
744
+
745
+
746
+
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+ </dl>
774
+
775
+
776
+
777
+
778
+
779
+
780
+
781
+
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+ </dd>
790
+
791
+
792
+ </div>
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+
809
+
810
+
811
+ </article>
812
+
813
+ </section>
814
+
815
+
816
+
817
+
818
+ </div>
819
+ </div>
820
+
821
+ <div class="clearfix"></div>
822
+
823
+
824
+ <div class="col-md-3">
825
+ <div id="toc" class="col-md-3 hidden-xs hidden-sm hidden-md"></div>
826
+ </div>
827
+
828
+
829
+ </div>
830
+ </div>
831
+
832
+
833
+ <div class="modal fade" id="searchResults">
834
+ <div class="modal-dialog">
835
+ <div class="modal-content">
836
+ <div class="modal-header">
837
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
838
+ <h4 class="modal-title">Search results</h4>
839
+ </div>
840
+ <div class="modal-body"></div>
841
+ <div class="modal-footer">
842
+ <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
843
+ </div>
844
+ </div><!-- /.modal-content -->
845
+ </div><!-- /.modal-dialog -->
846
+ </div>
847
+
848
+
849
+ <footer>
850
+
851
+
852
+ <span class="jsdoc-message">
853
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a>
854
+
855
+ on 2021-02-03T15:24:32+01:00
856
+
857
+ using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
858
+ </span>
859
+ </footer>
860
+
861
+ <script src="scripts/docstrap.lib.js"></script>
862
+ <script src="scripts/toc.js"></script>
863
+
864
+ <script type="text/javascript" src="scripts/fulltext-search-ui.js"></script>
865
+
866
+
867
+ <script>
868
+ $( function () {
869
+ $( "[id*='$']" ).each( function () {
870
+ var $this = $( this );
871
+
872
+ $this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) );
873
+ } );
874
+
875
+ $( ".tutorial-section pre, .readme-section pre, pre.prettyprint.source" ).each( function () {
876
+ var $this = $( this );
877
+
878
+ var example = $this.find( "code" );
879
+ exampleText = example.html();
880
+ var lang = /{@lang (.*?)}/.exec( exampleText );
881
+ if ( lang && lang[1] ) {
882
+ exampleText = exampleText.replace( lang[0], "" );
883
+ example.html( exampleText );
884
+ lang = lang[1];
885
+ } else {
886
+ var langClassMatch = example.parent()[0].className.match(/lang\-(\S+)/);
887
+ lang = langClassMatch ? langClassMatch[1] : "javascript";
888
+ }
889
+
890
+ if ( lang ) {
891
+
892
+ $this
893
+ .addClass( "sunlight-highlight-" + lang )
894
+ .addClass( "linenums" )
895
+ .html( example.html() );
896
+
897
+ }
898
+ } );
899
+
900
+ Sunlight.highlightAll( {
901
+ lineNumbers : false,
902
+ showMenu : true,
903
+ enableDoclinks : true
904
+ } );
905
+
906
+ $.catchAnchorLinks( {
907
+ navbarOffset: 10
908
+ } );
909
+ $( "#toc" ).toc( {
910
+ anchorName : function ( i, heading, prefix ) {
911
+ return $( heading ).attr( "id" ) || ( prefix + i );
912
+ },
913
+ selectors : "#toc-content h1,#toc-content h2,#toc-content h3,#toc-content h4",
914
+ showAndHide : false,
915
+ smoothScrolling: true
916
+ } );
917
+
918
+ $( "#main span[id^='toc']" ).addClass( "toc-shim" );
919
+ $( '.dropdown-toggle' ).dropdown();
920
+
921
+ $( "table" ).each( function () {
922
+ var $this = $( this );
923
+ $this.addClass('table');
924
+ } );
925
+
926
+ } );
927
+ </script>
928
+
929
+
930
+
931
+ <!--Navigation and Symbol Display-->
932
+
933
+
934
+ <!--Google Analytics-->
935
+
936
+
937
+
938
+ <script type="text/javascript">
939
+ $(document).ready(function() {
940
+ SearcherDisplay.init();
941
+ });
942
+ </script>
943
+
944
+
945
+ </body>
946
+ </html>