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.js
CHANGED
|
@@ -65,7 +65,7 @@ var autoBind = (self, {include, exclude} = {}) => {
|
|
|
65
65
|
return self;
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
-
var version = "7.1.
|
|
68
|
+
var version = "7.1.1";
|
|
69
69
|
|
|
70
70
|
class MigrationError extends Error {
|
|
71
71
|
constructor(message = "The global `jsPsych` variable is no longer available in jsPsych v7.") {
|
|
@@ -2527,7 +2527,7 @@ class JsPsych {
|
|
|
2527
2527
|
yield this.finished;
|
|
2528
2528
|
});
|
|
2529
2529
|
}
|
|
2530
|
-
simulate(timeline, simulation_mode, simulation_options = {}) {
|
|
2530
|
+
simulate(timeline, simulation_mode = "data-only", simulation_options = {}) {
|
|
2531
2531
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2532
2532
|
this.simulation_mode = simulation_mode;
|
|
2533
2533
|
this.simulation_options = simulation_options;
|