Skip to content

Commit 86311a0

Browse files
author
Stanislav Kalashnik
committed
generate documentation
1 parent 2903d28 commit 86311a0

File tree

81 files changed

+1174
-750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1174
-750
lines changed

doc/app.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
460460
<br class="clear">
461461

462462
<footer>
463-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
463+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
464464
</footer>
465465

466466
<script> prettyPrint(); </script>

doc/collection.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
397397
<br class="clear">
398398

399399
<footer>
400-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
400+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
401401
</footer>
402402

403403
<script> prettyPrint(); </script>

doc/component.js.html

Lines changed: 42 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,10 @@ <h1 class="page-title">Source: component.js</h1>
145145

146146
// outer handle
147147
if ( config.$node !== undefined ) {
148-
149148
if ( DEBUG ) {
150149
if ( !(config.$node instanceof Element) ) { throw 'wrong config.$node type'; }
151150
}
152-
151+
// apply
153152
this.$node = config.$node;
154153
} else {
155154
// empty div in case nothing is given
@@ -161,7 +160,7 @@ <h1 class="page-title">Source: component.js</h1>
161160
if ( DEBUG ) {
162161
if ( !(config.$body instanceof Element) ) { throw 'wrong config.$body type'; }
163162
}
164-
163+
// apply
165164
this.$body = config.$body;
166165
} else {
167166
// inner and outer handlers are identical
@@ -173,7 +172,7 @@ <h1 class="page-title">Source: component.js</h1>
173172
if ( DEBUG ) {
174173
if ( !(config.$content instanceof Element) ) { throw 'wrong config.$content type'; }
175174
}
176-
175+
// apply
177176
this.$body.appendChild(config.$content);
178177
}
179178

@@ -185,7 +184,7 @@ <h1 class="page-title">Source: component.js</h1>
185184
if ( DEBUG ) {
186185
if ( !(config.parent instanceof Component) ) { throw 'wrong config.parent type'; }
187186
}
188-
187+
// apply
189188
config.parent.add(this);
190189
}
191190

@@ -194,7 +193,7 @@ <h1 class="page-title">Source: component.js</h1>
194193
// if ( DEBUG ) {
195194
// if ( !(config.page instanceof Component) ) { throw 'wrong config.page type'; }
196195
// }
197-
//
196+
// // apply
198197
// this.page = config.page;
199198
//}
200199

@@ -223,7 +222,7 @@ <h1 class="page-title">Source: component.js</h1>
223222
if ( DEBUG ) {
224223
if ( !Array.isArray(config.children) ) { throw 'wrong config.children type'; }
225224
}
226-
225+
// apply
227226
this.add.apply(this, config.children);
228227
}
229228

@@ -272,6 +271,10 @@ <h1 class="page-title">Source: component.js</h1>
272271
this.$node.title = 'component ' + this.constructor.name + '.' + this.id + ' (outer)';
273272
this.$body.title = 'component ' + this.constructor.name + '.' + this.id + ' (inner)';
274273
}
274+
275+
// @todo remove or implement
276+
// navigation by keyboard
277+
//this.addListener('keydown', this.navigateDefault);
275278
}
276279

277280

@@ -280,6 +283,37 @@ <h1 class="page-title">Source: component.js</h1>
280283
Component.prototype.constructor = Component;
281284

282285

286+
/**
287+
* Default method to move focus according to pressed keys.
288+
*
289+
* @todo remove or implement
290+
*
291+
* @param {Event} event generated event source of movement
292+
*/
293+
/*Component.prototype.navigateDefault = function ( event ) {
294+
switch ( event.code ) {
295+
case keys.up:
296+
case keys.down:
297+
case keys.right:
298+
case keys.left:
299+
// notify listeners
300+
this.emit('overflow');
301+
break;
302+
}
303+
};*/
304+
305+
306+
/**
307+
* Current active method to move focus according to pressed keys.
308+
* Can be redefined to provide custom navigation.
309+
*
310+
* @todo remove or implement
311+
*
312+
* @type {function}
313+
*/
314+
/*Component.prototype.navigate = Component.prototype.navigateDefault;*/
315+
316+
283317
/**
284318
* Add a new component as a child.
285319
*
@@ -565,7 +599,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
565599
<br class="clear">
566600

567601
<footer>
568-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
602+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
569603
</footer>
570604

571605
<script> prettyPrint(); </script>

doc/develop_debug.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
268268
<br class="clear">
269269

270270
<footer>
271-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
271+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
272272
</footer>
273273

274274
<script> prettyPrint(); </script>

doc/develop_events.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
225225
<br class="clear">
226226

227227
<footer>
228-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
228+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
229229
</footer>
230230

231231
<script> prettyPrint(); </script>

doc/develop_grid.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
333333
<br class="clear">
334334

335335
<footer>
336-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
336+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
337337
</footer>
338338

339339
<script> prettyPrint(); </script>

doc/develop_main.js.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ <h1 class="page-title">Source: develop/main.js</h1>
6666

6767

6868
// additional dev modules
69+
require('./shims');
6970
require('./static');
7071
require('./proxy');
7172
require('./events');
@@ -89,7 +90,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
8990
<br class="clear">
9091

9192
<footer>
92-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
93+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
9394
</footer>
9495

9596
<script> prettyPrint(); </script>

doc/develop_proxy.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
155155
<br class="clear">
156156

157157
<footer>
158-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
158+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
159159
</footer>
160160

161161
<script> prettyPrint(); </script>

doc/develop_static.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
6464
<br class="clear">
6565

6666
<footer>
67-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
67+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
6868
</footer>
6969

7070
<script> prettyPrint(); </script>

doc/develop_storage.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-st
7979
<br class="clear">
8080

8181
<footer>
82-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Tue Feb 03 2015 14:02:46 GMT+0200 (EET)
82+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Wed Feb 18 2015 17:53:43 GMT+0200 (EET)
8383
</footer>
8484

8585
<script> prettyPrint(); </script>

0 commit comments

Comments
 (0)