jspsych 7.1.0 → 7.1.1
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.
- package/dist/JsPsych.d.ts +1 -1
- package/dist/index.browser.js +2 -2
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.min.js +1 -1
- package/dist/index.browser.min.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/JsPsych.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -69,7 +69,7 @@ var autoBind = (self, {include, exclude} = {}) => {
|
|
|
69
69
|
return self;
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "7.1.
|
|
72
|
+
var version = "7.1.1";
|
|
73
73
|
|
|
74
74
|
class MigrationError extends Error {
|
|
75
75
|
constructor(message = "The global `jsPsych` variable is no longer available in jsPsych v7.") {
|
|
@@ -2531,7 +2531,7 @@ class JsPsych {
|
|
|
2531
2531
|
yield this.finished;
|
|
2532
2532
|
});
|
|
2533
2533
|
}
|
|
2534
|
-
simulate(timeline, simulation_mode, simulation_options = {}) {
|
|
2534
|
+
simulate(timeline, simulation_mode = "data-only", simulation_options = {}) {
|
|
2535
2535
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2536
2536
|
this.simulation_mode = simulation_mode;
|
|
2537
2537
|
this.simulation_options = simulation_options;
|