Skip to content

Commit 02ca013

Browse files
committed
build release
1 parent 4dd2e37 commit 02ca013

File tree

156 files changed

+328
-320
lines changed

Some content is hidden

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

156 files changed

+328
-320
lines changed

client/internal/docs/App.html

Lines changed: 63 additions & 63 deletions
Large diffs are not rendered by default.

client/internal/docs/App.js.html

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ <h1 class="page-title">Source: App.js</h1>
9494
this.shortId = id;
9595

9696

97+
this.onSubmit = function() {
98+
jt.popupMessage('Submitting...');
99+
};
100+
97101
/**
98102
* @type {jt}
99103
*/
@@ -1658,6 +1662,18 @@ <h1 class="page-title">Source: App.js</h1>
16581662
}
16591663
}
16601664

1665+
copyFieldsTo(obj) {
1666+
var fields = this.outputFields();
1667+
for (var f in fields) {
1668+
var field = fields[f];
1669+
if (Utils.isFunction(this[field])) {
1670+
obj['__func_' + field] = this[field].toString();
1671+
} else {
1672+
obj[field] = this[field];
1673+
}
1674+
}
1675+
}
1676+
16611677
/**
16621678
* A shell of this object. Excludes parent, includes child shells.
16631679
*
@@ -1668,15 +1684,7 @@ <h1 class="page-title">Source: App.js</h1>
16681684
*/
16691685
shellWithChildren() {
16701686
var out = {};
1671-
var fields = this.outputFields();
1672-
for (var f in fields) {
1673-
var field = fields[f];
1674-
if (Utils.isFunction(this[field])) {
1675-
out['__func_' + field] = this[field].toString();
1676-
} else {
1677-
out[field] = this[field];
1678-
}
1679-
}
1687+
this.copyFieldsTo(out);
16801688
out.indexInSession = this.indexInSession();
16811689
out.periods = [];
16821690
for (var i in this.periods) {
@@ -1697,11 +1705,7 @@ <h1 class="page-title">Source: App.js</h1>
16971705
*/
16981706
shellWithParent() {
16991707
var out = {};
1700-
var fields = this.outputFields();
1701-
for (var f in fields) {
1702-
var field = fields[f];
1703-
out[field] = this[field];
1704-
}
1708+
this.copyFieldsTo(out);
17051709
out.session = this.session.shell();
17061710
out.numStages = this.stages.length;
17071711
out.vueComputedText = {};
@@ -1730,11 +1734,7 @@ <h1 class="page-title">Source: App.js</h1>
17301734
*/
17311735
shell() {
17321736
var out = {};
1733-
var fields = this.outputFields();
1734-
for (var f in fields) {
1735-
var field = fields[f];
1736-
out[field] = this[field];
1737-
}
1737+
this.copyFieldsTo(out);
17381738
out.sessionIndex = this.indexInSession();
17391739
return out;
17401740
}
@@ -1837,7 +1837,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
18371837
<br class="clear">
18381838

18391839
<footer>
1840-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
1840+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:28 GMT+0100 (Mitteleuropäische Zeit)
18411841
</footer>
18421842

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

client/internal/docs/Client.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
844844
<br class="clear">
845845

846846
<footer>
847-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
847+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:29 GMT+0100 (Mitteleuropäische Zeit)
848848
</footer>
849849

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

client/internal/docs/Client.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
163163
<br class="clear">
164164

165165
<footer>
166-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
166+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:28 GMT+0100 (Mitteleuropäische Zeit)
167167
</footer>
168168

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

client/internal/docs/Data.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
159159
<br class="clear">
160160

161161
<footer>
162-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
162+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:29 GMT+0100 (Mitteleuropäische Zeit)
163163
</footer>
164164

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

client/internal/docs/Group.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2916,7 +2916,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
29162916
<br class="clear">
29172917

29182918
<footer>
2919-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
2919+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:29 GMT+0100 (Mitteleuropäische Zeit)
29202920
</footer>
29212921

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

client/internal/docs/Group.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
769769
<br class="clear">
770770

771771
<footer>
772-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
772+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:28 GMT+0100 (Mitteleuropäische Zeit)
773773
</footer>
774774

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

client/internal/docs/Logger.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
293293
<br class="clear">
294294

295295
<footer>
296-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
296+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:29 GMT+0100 (Mitteleuropäische Zeit)
297297
</footer>
298298

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

client/internal/docs/Msgs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
676676
<br class="clear">
677677

678678
<footer>
679-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
679+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:29 GMT+0100 (Mitteleuropäische Zeit)
680680
</footer>
681681

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

client/internal/docs/Participant.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="App.html"
17031703
<br class="clear">
17041704

17051705
<footer>
1706-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 11:52:42 GMT+0100 (Mitteleuropäische Zeit)
1706+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Dec 12 2019 16:53:29 GMT+0100 (Mitteleuropäische Zeit)
17071707
</footer>
17081708

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

0 commit comments

Comments
 (0)