diff --git a/6.3/core_library/jspsych-core/index.html b/6.3/core_library/jspsych-core/index.html index cd9957ae..a4412bec 100755 --- a/6.3/core_library/jspsych-core/index.html +++ b/6.3/core_library/jspsych-core/index.html @@ -3682,7 +3682,7 @@ data, such as in the example below.
Either a function that returns the value of the timeline variable, or the value of the timeline variable, depending on the context in which it is used. See call_immediate
description above.
Timeline variables are a powerful technique for generating experiments with repetitive procedures but different parameter values. This function fetches the current value of a particular timeline variable. It must be used in conjunction with a timeline that has timeline variables. See the timeline variable section for details.
+Timeline variables are a powerful technique for generating experiments with repetitive procedures but different parameter values. This function fetches the current value of a particular timeline variable. It must be used in conjunction with a timeline that has timeline variables. See the timeline variable section for details.
var trial = {
diff --git a/6.3/overview/prolific/index.html b/6.3/overview/prolific/index.html
index 9f8a8337..506cf9d2 100755
--- a/6.3/overview/prolific/index.html
+++ b/6.3/overview/prolific/index.html
@@ -1509,7 +1509,7 @@
Intergrating with Prolific¶
Prolific is a participant recruitment service aimed at research. Integrating a jsPsych experiment with Prolific requires capturing the participant's ID and sending the participant to a completion URL at the end of the experiment.
Capturing the Participant ID, Study ID, and Session ID¶
-When creating a study on Prolific you must provide the URL to your study. You can host your jsPsych experiment however you'd like - some options are discussed in the Running Experiments documentation page. Once you've got a URL to your experiment, you can enter that in the study link section of Prolific. Then, click the option to record Prolific IDs via URL parameters.
+When creating a study on Prolific you must provide the URL to your study. You can host your jsPsych experiment however you'd like - some options are discussed in the Running Experiments documentation page. Once you've got a URL to your experiment, you can enter that in the study link section of Prolific. Then, click the option to record Prolific IDs via URL parameters.

This will append information about the participant's prolific ID (PROLIFIC_PID
), the study's ID (STUDY_ID
), and the session ID (SESSION_ID
) to the URL that participants use to access your experiment.
We can capture these variables with jsPsych, and add them to jsPsych's data. This can be done anywhere in your code. This code does not need to run as part of your experiment timeline.
@@ -1539,7 +1539,7 @@
You can accomplish this in a couple different ways.
Warning
-It's important that you've saved all the data from your experiment before the participant returns to Prolific. Make sure that any server communication has completed prior to redirecting the participant. One way to do this is by using the async features of the call-function
plugin (example).
+It's important that you've saved all the data from your experiment before the participant returns to Prolific. Make sure that any server communication has completed prior to redirecting the participant. One way to do this is by using the async features of the call-function
plugin (example).
Participant clicks a link¶
One option is to create a trial that contains a link that the participant clicks to end the experiment and return to Prolific. For example, the html-keyboard-response
plugin can be used to display text that includes a link. This could go on a debriefing page.
diff --git a/6.3/overview/style/index.html b/6.3/overview/style/index.html
index f708c0ab..ed3816eb 100755
--- a/6.3/overview/style/index.html
+++ b/6.3/overview/style/index.html
@@ -1545,7 +1545,7 @@
stimulus: '<p style="font-size:30px;color:red;">hello world!</p>'
}
You can also use a dynamic parameter to combine inline CSS and trial-specific variables. This allows you to easily apply the same inline CSS to multiple trials. Here's an example using a dynamic stimulus parameter and timeline variables:
+You can also use a dynamic parameter to combine inline CSS and trial-specific variables. This allows you to easily apply the same inline CSS to multiple trials. Here's an example using a dynamic stimulus parameter and timeline variables:
var trial = {
type: 'html-keyboard-response',
stimulus: function() {
@@ -1651,7 +1651,7 @@
// ...
</script>
You may want the css_classes
parameter to vary across trials. If so, you can turn it into a dynamic parameter or use timeline variables (see examples below).
You may want the css_classes
parameter to vary across trials. If so, you can turn it into a dynamic parameter or use timeline variables (see examples below).
One thing to note about the css_classes
parameter is that it only adds the class(es) to the jspsych-content <div> element, which is the "parent" element that contains all of the experiment content. Often you'll want your CSS rules to be applied to other elements inside of this jspsych-content div. Sometimes your CSS rules will be "inherited" by all of the other jsPsych content inside of this parent <div>. For instance, in the fixation
example above, the CSS rules that change the font size, weight and color are applied to the parent <div> and automatically passed on to the stimulus text through inheritance.
There are two reasons why a CSS rule like the one above for fixation
may not work the way you expect:
Any timeline can be looped using the loop_function
option. The loop function should be a function that evaluates to true
if the timeline should repeat, and false
if the timeline should end. It receives a single parameter, named data
by convention. This parameter will be the DataCollection object with all of the data from the trials executed in the last iteration of the timeline. The loop function will be evaluated after the timeline is completed.
Any timeline can be looped using the loop_function
option. The loop function should be a function that evaluates to true
if the timeline should repeat, and false
if the timeline should end. It receives a single parameter, named data
by convention. This parameter will be the DataCollection object with all of the data from the trials executed in the last iteration of the timeline. The loop function will be evaluated after the timeline is completed.
var trial = {
type: 'html-keyboard-response',
stimulus: 'This trial is in a loop. Press R to repeat this trial, or C to continue.'
diff --git a/6.3/plugins/jspsych-animation/index.html b/6.3/plugins/jspsych-animation/index.html
index d8c6b825..54e1ed0e 100755
--- a/6.3/plugins/jspsych-animation/index.html
+++ b/6.3/plugins/jspsych-animation/index.html
@@ -1483,7 +1483,7 @@
jspsych-animation¶
This plugin displays a sequence of images at a fixed frame rate. The sequence can be looped a specified number of times. The subject is free to respond at any point during the animation, and the time of the response is recorded.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1539,7 +1539,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-audio-button-response/index.html b/6.3/plugins/jspsych-audio-button-response/index.html
index 8d5101e9..68680ce8 100755
--- a/6.3/plugins/jspsych-audio-button-response/index.html
+++ b/6.3/plugins/jspsych-audio-button-response/index.html
@@ -1486,7 +1486,7 @@
Audio files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the audio stimulus, you will need to manually preload the audio.
The trial can end when the subject responds, when the audio file has finished playing, or if the subject has failed to respond within a fixed length of time. You can also prevent a button response from being made before the audio has finished playing.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1560,7 +1560,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-audio-keyboard-response/index.html b/6.3/plugins/jspsych-audio-keyboard-response/index.html
index 3a6a76b9..bd314db0 100755
--- a/6.3/plugins/jspsych-audio-keyboard-response/index.html
+++ b/6.3/plugins/jspsych-audio-keyboard-response/index.html
@@ -1483,10 +1483,10 @@
jspsych-audio-keyboard-response¶
This plugin plays audio files and records responses generated with the keyboard.
If the browser supports it, audio files are played using the WebAudio API. This allows for reasonably precise timing of the playback. The timing of responses generated is measured against the WebAudio specific clock, improving the measurement of response times. If the browser does not support the WebAudio API, then the audio file is played with HTML5 audio.
-Audio files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the audio stimulus, then you will need to manually preload the audio.
+Audio files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the audio stimulus, then you will need to manually preload the audio.
The trial can end when the subject responds, when the audio file has finished playing, or if the subject has failed to respond within a fixed length of time. You can also prevent a keyboard response from being recorded before the audio has finished playing.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1542,7 +1542,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-audio-slider-response/index.html b/6.3/plugins/jspsych-audio-slider-response/index.html
index bf65a3a7..09001dfb 100755
--- a/6.3/plugins/jspsych-audio-slider-response/index.html
+++ b/6.3/plugins/jspsych-audio-slider-response/index.html
@@ -1483,10 +1483,10 @@
jspsych-audio-slider-response¶
This plugin plays an audio file and allows the subject to respond by dragging a slider.
If the browser supports it, audio files are played using the WebAudio API. This allows for reasonably precise timing of the playback. The timing of responses generated is measured against the WebAudio specific clock, improving the measurement of response times. If the browser does not support the WebAudio API, then the audio file is played with HTML5 audio.
-Audio files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the audio stimulus, then you will need to manually preload the audio.
+Audio files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the audio stimulus, then you will need to manually preload the audio.
The trial can end when the subject responds, or if the subject has failed to respond within a fixed length of time. You can also prevent the slider response from being made before the audio has finished playing.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1578,7 +1578,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-call-function/index.html b/6.3/plugins/jspsych-call-function/index.html
index b25dc5ce..ca486f75 100755
--- a/6.3/plugins/jspsych-call-function/index.html
+++ b/6.3/plugins/jspsych-call-function/index.html
@@ -1484,7 +1484,7 @@
This plugin executes a specified function. This allows the experimenter to run arbitrary code at any point during the experiment.
The function cannot take any arguments. If arguments are needed, then an anonymous function should be used to wrap the function call (see examples below).
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1510,7 +1510,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-canvas-button-response/index.html b/6.3/plugins/jspsych-canvas-button-response/index.html
index 1d3829b1..4cb0234c 100755
--- a/6.3/plugins/jspsych-canvas-button-response/index.html
+++ b/6.3/plugins/jspsych-canvas-button-response/index.html
@@ -1483,7 +1483,7 @@
jspsych-canvas-button-response¶
This plugin can be used to draw a stimulus on a HTML canvas element, and record a button click response and response time. The canvas stimulus can be useful for displaying dynamic, parametrically-defined graphics, and for controlling the positioning of multiple graphical elements (shapes, text, images). The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically if the subject has failed to respond within a fixed length of time. One or more button choices will be displayed under the canvas, and the button style can be customized using HTML formatting.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1557,7 +1557,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-canvas-keyboard-response/index.html b/6.3/plugins/jspsych-canvas-keyboard-response/index.html
index bcb3cc4e..41328df5 100755
--- a/6.3/plugins/jspsych-canvas-keyboard-response/index.html
+++ b/6.3/plugins/jspsych-canvas-keyboard-response/index.html
@@ -1483,7 +1483,7 @@
jspsych-canvas-keyboard-response¶
This plugin can be used to draw a stimulus on a HTML canvas element and record a keyboard response. The canvas stimulus can be useful for displaying dynamic, parametrically-defined graphics, and for controlling the positioning of multiple graphical elements (shapes, text, images). The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically if the subject has failed to respond within a fixed length of time.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1539,7 +1539,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-canvas-slider-response/index.html b/6.3/plugins/jspsych-canvas-slider-response/index.html
index 3d73f1d6..e656085d 100755
--- a/6.3/plugins/jspsych-canvas-slider-response/index.html
+++ b/6.3/plugins/jspsych-canvas-slider-response/index.html
@@ -1483,7 +1483,7 @@
jspsych-canvas-slider-response¶
This plugin can be used to draw a stimulus on a HTML canvas element and collect a response within a range of values, which is made by dragging a slider. The canvas stimulus can be useful for displaying dynamic, parametrically-defined graphics, and for controlling the positioning of multiple graphical elements (shapes, text, images). The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically if the subject has failed to respond within a fixed length of time.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1581,7 +1581,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-categorize-animation/index.html b/6.3/plugins/jspsych-categorize-animation/index.html
index 75f62765..ddb3c68b 100755
--- a/6.3/plugins/jspsych-categorize-animation/index.html
+++ b/6.3/plugins/jspsych-categorize-animation/index.html
@@ -1483,7 +1483,7 @@
jspsych-categorize-animation¶
The categorize animation plugin shows a sequence of images at a specified frame rate. The subject responds by pressing a key. Feedback indicating the correctness of the response is given.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1569,7 +1569,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-categorize-html/index.html b/6.3/plugins/jspsych-categorize-html/index.html
index ea96702f..153aaffb 100755
--- a/6.3/plugins/jspsych-categorize-html/index.html
+++ b/6.3/plugins/jspsych-categorize-html/index.html
@@ -1483,7 +1483,7 @@
jspsych-categorize-html¶
The categorize html plugin shows an HTML object on the screen. The subject responds by pressing a key. Feedback indicating the correctness of the response is given.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1581,7 +1581,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-categorize-image/index.html b/6.3/plugins/jspsych-categorize-image/index.html
index 01e35f5b..0da554e0 100755
--- a/6.3/plugins/jspsych-categorize-image/index.html
+++ b/6.3/plugins/jspsych-categorize-image/index.html
@@ -1483,7 +1483,7 @@
jspsych-categorize-image¶
The categorize image plugin shows an image object on the screen. The subject responds by pressing a key. Feedback indicating the correctness of the response is given.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1581,7 +1581,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-cloze/index.html b/6.3/plugins/jspsych-cloze/index.html
index 0dcb24cf..51a8f5c1 100755
--- a/6.3/plugins/jspsych-cloze/index.html
+++ b/6.3/plugins/jspsych-cloze/index.html
@@ -1483,7 +1483,7 @@
*jspsych-cloze¶
This plugin displays a text with certain words removed. Participants are asked to replace the missing items. Responses are recorded when clicking a button. Optionally, responses are evaluated and a function is called in case of differences, making it possible to inform participants about mistakes.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1521,7 +1521,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-external-html/index.html b/6.3/plugins/jspsych-external-html/index.html
index bb044c51..e028b8b4 100755
--- a/6.3/plugins/jspsych-external-html/index.html
+++ b/6.3/plugins/jspsych-external-html/index.html
@@ -1535,7 +1535,7 @@
jspsych-external-html plugin¶
The HTML plugin displays an external HTML document (often a consent form). Either a keyboard response or a button press can be used to continue to the next trial. It allows the experimenter to check if conditions are met (such as indicating informed consent) before continuing.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1585,7 +1585,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-free-sort/index.html b/6.3/plugins/jspsych-free-sort/index.html
index 232a9631..fa2e3b0e 100755
--- a/6.3/plugins/jspsych-free-sort/index.html
+++ b/6.3/plugins/jspsych-free-sort/index.html
@@ -1483,7 +1483,7 @@
jspsych-free-sort plugin¶
The free-sort plugin displays one or more images on the screen that the participant can interact with by clicking and dragging with a mouse, or touching and dragging with a touchscreen device. When the trial starts, the images can be positioned outside or inside the sort area. All images must be moved into the sorting area before the participant can click a button to end the trial. All of the moves that the participant performs are recorded, as well as the final positions of all images. This plugin could be useful when asking participants to position images based on similarity to one another, or to recall image spatial locations.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1605,7 +1605,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-fullscreen/index.html b/6.3/plugins/jspsych-fullscreen/index.html
index ff717539..bfa26849 100755
--- a/6.3/plugins/jspsych-fullscreen/index.html
+++ b/6.3/plugins/jspsych-fullscreen/index.html
@@ -1487,7 +1487,7 @@
Safari does not support keyboard input when the browser is in fullscreen mode. Therefore, the function will not launch fullscreen mode on Safari. The experiment will ignore any trials using the fullscreen plugin in Safari.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1525,7 +1525,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-html-button-response/index.html b/6.3/plugins/jspsych-html-button-response/index.html
index 07f52a6c..ea82a620 100755
--- a/6.3/plugins/jspsych-html-button-response/index.html
+++ b/6.3/plugins/jspsych-html-button-response/index.html
@@ -1483,7 +1483,7 @@
jspsych-html-button-response¶
This plugin displays HTML content and records responses generated by button click. The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically if the subject has failed to respond within a fixed length of time. The button itself can be customized using HTML formatting.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1551,7 +1551,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-html-keyboard-response/index.html b/6.3/plugins/jspsych-html-keyboard-response/index.html
index dd508edd..55da410c 100755
--- a/6.3/plugins/jspsych-html-keyboard-response/index.html
+++ b/6.3/plugins/jspsych-html-keyboard-response/index.html
@@ -1483,7 +1483,7 @@
jspsych-html-keyboard-response¶
This plugin displays HTML content and records responses generated with the keyboard.The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically if the subject has failed to respond within a fixed length of time.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1533,7 +1533,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-html-slider-response/index.html b/6.3/plugins/jspsych-html-slider-response/index.html
index 4172552b..8361186c 100755
--- a/6.3/plugins/jspsych-html-slider-response/index.html
+++ b/6.3/plugins/jspsych-html-slider-response/index.html
@@ -1483,7 +1483,7 @@
jspsych-html-slider-response¶
This plugin displays HTML content and allows the subject to respond by dragging a slider.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1575,7 +1575,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-iat-html/index.html b/6.3/plugins/jspsych-iat-html/index.html
index e87c9be8..8459c851 100755
--- a/6.3/plugins/jspsych-iat-html/index.html
+++ b/6.3/plugins/jspsych-iat-html/index.html
@@ -1483,7 +1483,7 @@
jspsych-iat-html plugin¶
This plugin runs a single trial of the implicit association test (IAT), using HTML content as the stimulus.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1575,7 +1575,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-iat-image/index.html b/6.3/plugins/jspsych-iat-image/index.html
index c2c46123..57c54bd5 100755
--- a/6.3/plugins/jspsych-iat-image/index.html
+++ b/6.3/plugins/jspsych-iat-image/index.html
@@ -1479,7 +1479,7 @@
jspsych-iat-image plugin
This plugin runs a single trial of the implicit association test (IAT), using an image as the stimulus.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1571,7 +1571,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-image-button-response/index.html b/6.3/plugins/jspsych-image-button-response/index.html
index a95d15eb..727316b8 100755
--- a/6.3/plugins/jspsych-image-button-response/index.html
+++ b/6.3/plugins/jspsych-image-button-response/index.html
@@ -1482,9 +1482,9 @@
jspsych-image-button-response¶
This plugin displays an image and records responses generated with a button click. The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically if the subject has failed to respond within a fixed length of time. The button itself can be customized using HTML formatting.
-Image files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the image stimulus, you will need to manually preload the images.
+Image files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the image stimulus, you will need to manually preload the images.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1576,7 +1576,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-image-keyboard-response/index.html b/6.3/plugins/jspsych-image-keyboard-response/index.html
index 1ce7d92d..3721b1fe 100755
--- a/6.3/plugins/jspsych-image-keyboard-response/index.html
+++ b/6.3/plugins/jspsych-image-keyboard-response/index.html
@@ -1482,9 +1482,9 @@
jspsych-image-keyboard-response¶
This plugin displays and image and records responses generated with the keyboard. The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically if the subject has failed to respond within a fixed length of time.
-Image files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the image stimulus, you will need to manually preload the images.
+Image files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the image stimulus, you will need to manually preload the images.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1558,7 +1558,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-image-slider-response/index.html b/6.3/plugins/jspsych-image-slider-response/index.html
index b1810e2e..6ae331bb 100755
--- a/6.3/plugins/jspsych-image-slider-response/index.html
+++ b/6.3/plugins/jspsych-image-slider-response/index.html
@@ -1482,9 +1482,9 @@
jspsych-image-slider-response¶
This plugin displays and image and allows the subject to respond by dragging a slider.
-Image files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the image stimulus, you will need to manually preload the images.
+Image files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the image stimulus, you will need to manually preload the images.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1600,7 +1600,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-instructions/index.html b/6.3/plugins/jspsych-instructions/index.html
index c5a58404..df0c8ba2 100755
--- a/6.3/plugins/jspsych-instructions/index.html
+++ b/6.3/plugins/jspsych-instructions/index.html
@@ -1537,7 +1537,7 @@
jspsych-instructions plugin¶
This plugin is for showing instructions to the subject. It allows subjects to navigate through multiple pages of instructions at their own pace, recording how long the subject spends on each page. Navigation can be done using the mouse or keyboard. Subjects can be allowed to navigate forwards and backwards through pages, if desired.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1611,7 +1611,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-maxdiff/index.html b/6.3/plugins/jspsych-maxdiff/index.html
index f7c15fb0..5714b616 100755
--- a/6.3/plugins/jspsych-maxdiff/index.html
+++ b/6.3/plugins/jspsych-maxdiff/index.html
@@ -1483,7 +1483,7 @@
jspsych-maxdiff plugin¶
The maxdiff plugin displays a table with rows of alternatives to be selected for two mutually-exclusive categories, typically as 'most' or 'least' on a particular criteria (e.g. importance, preference, similarity). The participant responds by selecting one radio button corresponding to an alternative in both the left and right response columns. The same alternative cannot be endorsed on both the left and right response columns (e.g. 'most' and 'least') simultaneously.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1533,7 +1533,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-preload/index.html b/6.3/plugins/jspsych-preload/index.html
index e381f024..63bf9821 100755
--- a/6.3/plugins/jspsych-preload/index.html
+++ b/6.3/plugins/jspsych-preload/index.html
@@ -1484,7 +1484,7 @@
This plugin loads images, audio, and video files. It is used for loading files into the browser's memory before they are needed in the experiment, in order to improve stimulus and response timing, and avoid disruption to the experiment flow. We recommend using this plugin anytime you are loading media files, and especially when your experiment requires large and/or many media files. See the Media Preloading page for more information.
The preload trial will end as soon as all files have loaded successfully. The trial will end or stop with an error message when one of these two scenarios occurs (whichever comes first): (a) all files have not finished loading when the max_load_time
duration is reached, or (b) all file requests have responded with either a load or fail event, and one or more files has failed to load. The continue_after_error
parameter determines whether the trial will stop with an error message or end (allowing the experiment to continue) when preloading is not successful.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. While there are no specific parameters that are required, the plugin expects to be given a set of files to load through one or more of the following parameters: auto_preload
or trials
(for automatic loading), and/or images
, audio
, video
(for manual loading). To automatically load files based on a timeline of trials, either set the auto_preload
parameter is true
(to load files based on the main timeline passed to jsPsych.init
) or use the trials
parameter to load files based on a specific subset of trials. To manually load a set of files, use the images
, audio
, and video
parameters. You can combine automatic and manual loading methods in a single preload trial.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. While there are no specific parameters that are required, the plugin expects to be given a set of files to load through one or more of the following parameters: auto_preload
or trials
(for automatic loading), and/or images
, audio
, video
(for manual loading). To automatically load files based on a timeline of trials, either set the auto_preload
parameter is true
(to load files based on the main timeline passed to jsPsych.init
) or use the trials
parameter to load files based on a specific subset of trials. To manually load a set of files, use the images
, audio
, and video
parameters. You can combine automatic and manual loading methods in a single preload trial.
All other parameters can be left unspecified if the default value is acceptable.
@@ -1577,7 +1577,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-rdk/index.html b/6.3/plugins/jspsych-rdk/index.html
index 87205b82..92602ee3 100755
--- a/6.3/plugins/jspsych-rdk/index.html
+++ b/6.3/plugins/jspsych-rdk/index.html
@@ -1555,7 +1555,7 @@
For optimal performance, fullscreen mode should be manually triggered by the user (e.g. F11 key in Chrome for Windows). Usage of the default Fullscreen trigger from the jsPsych API library with this plugin might result in the stimuli being displayed incorrectly.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Parameters can be left unspecified if the default value is acceptable.
@@ -1762,7 +1762,7 @@
- Random direction: Each incoherent dot has its own alternative direction of motion (designated randomly at the beginning of the trial), and moves in that direction in each frame.
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects all parameter data described above and the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects all parameter data described above and the following data for each trial.
diff --git a/6.3/plugins/jspsych-reconstruction/index.html b/6.3/plugins/jspsych-reconstruction/index.html
index 7f396379..95f64ade 100755
--- a/6.3/plugins/jspsych-reconstruction/index.html
+++ b/6.3/plugins/jspsych-reconstruction/index.html
@@ -1484,7 +1484,7 @@
This plugin allows a subject to interact with a stimulus by modifying a parameter of the stimulus and observing the change in the stimulus in real-time.
The stimulus must be defined through a function that returns an HTML-formatted string. The function should take a single value, which is the parameter that can be modified by the subject. The value can only range from 0 to 1. See the example at the bottom of the page for a sample function.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1534,7 +1534,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-resize/index.html b/6.3/plugins/jspsych-resize/index.html
index 9439a955..15f27999 100755
--- a/6.3/plugins/jspsych-resize/index.html
+++ b/6.3/plugins/jspsych-resize/index.html
@@ -1483,7 +1483,7 @@
jspsych-resize¶
This plugin displays a resizable div container that allows the user to drag until the container is the same size as the item being measured. Once the user measures the item as close as possible, clicking the button sets a scaling factor for the div containing jsPsych content. This causes the stimuli that follow to have a known size, independent of monitor resolution.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1533,7 +1533,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-same-different-html/index.html b/6.3/plugins/jspsych-same-different-html/index.html
index a56cdc9c..87beb35f 100755
--- a/6.3/plugins/jspsych-same-different-html/index.html
+++ b/6.3/plugins/jspsych-same-different-html/index.html
@@ -1483,7 +1483,7 @@
jspsych-same-different-html plugin¶
The same-different-html plugin displays two stimuli sequentially. Stimuli are HTML objects. The subject responds using the keyboard, and indicates whether the stimuli were the same or different. Same does not necessarily mean identical; a category judgment could be made, for example.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1545,7 +1545,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-same-different-image/index.html b/6.3/plugins/jspsych-same-different-image/index.html
index bbaec6ae..5527280e 100755
--- a/6.3/plugins/jspsych-same-different-image/index.html
+++ b/6.3/plugins/jspsych-same-different-image/index.html
@@ -1483,7 +1483,7 @@
jspsych-same-different-image plugin¶
The same-different-image plugin displays two stimuli sequentially. Stimuli are images. The subject responds using the keyboard, and indicates whether the stimuli were the same or different. Same does not necessarily mean identical; a category judgment could be made, for example.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1545,7 +1545,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-serial-reaction-time-mouse/index.html b/6.3/plugins/jspsych-serial-reaction-time-mouse/index.html
index b4efbd53..744ac4b8 100755
--- a/6.3/plugins/jspsych-serial-reaction-time-mouse/index.html
+++ b/6.3/plugins/jspsych-serial-reaction-time-mouse/index.html
@@ -1483,7 +1483,7 @@
jspsych-serial-reaction-time-mouse plugin¶
The serial reaction time mouse plugin implements a generalized version of the SRT task (Nissen & Bullmer, 1987). Squares are displayed in a grid-based system on the screen, and one square changes color. The participant must click on the square that changes color.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1557,7 +1557,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-serial-reaction-time/index.html b/6.3/plugins/jspsych-serial-reaction-time/index.html
index 72291ab3..23ddaf1b 100755
--- a/6.3/plugins/jspsych-serial-reaction-time/index.html
+++ b/6.3/plugins/jspsych-serial-reaction-time/index.html
@@ -1483,7 +1483,7 @@
jspsych-serial-reaction-time plugin¶
The serial reaction time plugin implements a generalized version of the SRT task (Nissen & Bullemer, 1987). Squares are displayed in a grid-based system on the screen, and one square changes color. The participant presses a key that corresponds to the darkened key. Feedback is optionally displayed, showing the participant which square the key they pressed matches.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1569,7 +1569,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-survey-html-form/index.html b/6.3/plugins/jspsych-survey-html-form/index.html
index d4925592..594887e9 100755
--- a/6.3/plugins/jspsych-survey-html-form/index.html
+++ b/6.3/plugins/jspsych-survey-html-form/index.html
@@ -1483,7 +1483,7 @@
jspsych-survey-html-form plugin¶
The survey-html-form plugin displays a set of <inputs>
from a HTML string. The type of input can be freely chosen, for a list of possible input types see the MDN page on inputs. The subject provides answers to the input fields.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1533,7 +1533,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-survey-likert/index.html b/6.3/plugins/jspsych-survey-likert/index.html
index 4266e17b..afa17520 100755
--- a/6.3/plugins/jspsych-survey-likert/index.html
+++ b/6.3/plugins/jspsych-survey-likert/index.html
@@ -1483,7 +1483,7 @@
jspsych-survey-likert plugin¶
The survey-likert plugin displays a set of questions with Likert scale responses. The subject responds by selecting a radio button.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1533,7 +1533,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-survey-multi-choice/index.html b/6.3/plugins/jspsych-survey-multi-choice/index.html
index 06795377..cc9d3d5d 100755
--- a/6.3/plugins/jspsych-survey-multi-choice/index.html
+++ b/6.3/plugins/jspsych-survey-multi-choice/index.html
@@ -1483,7 +1483,7 @@
jspsych-survey-multi-choice plugin¶
The survey-multi-choice plugin displays a set of questions with multiple choice response fields. The subject selects a single answer.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1527,7 +1527,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-survey-multi-select/index.html b/6.3/plugins/jspsych-survey-multi-select/index.html
index 06749530..bd1b2be5 100755
--- a/6.3/plugins/jspsych-survey-multi-select/index.html
+++ b/6.3/plugins/jspsych-survey-multi-select/index.html
@@ -1483,7 +1483,7 @@
jspsych-survey-multi-select plugin¶
The survey-multi-select plugin displays a set of questions with multiple select response fields. The subject could select multiple answers.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1533,7 +1533,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-survey-text/index.html b/6.3/plugins/jspsych-survey-text/index.html
index 6ad0ac1b..5df24108 100755
--- a/6.3/plugins/jspsych-survey-text/index.html
+++ b/6.3/plugins/jspsych-survey-text/index.html
@@ -1483,7 +1483,7 @@
jspsych-survey-text plugin¶
The survey-text plugin displays a set of questions with free response text fields. The subject types in answers.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1527,7 +1527,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-video-button-response/index.html b/6.3/plugins/jspsych-video-button-response/index.html
index 1b573af9..8109b4de 100755
--- a/6.3/plugins/jspsych-video-button-response/index.html
+++ b/6.3/plugins/jspsych-video-button-response/index.html
@@ -1482,9 +1482,9 @@
jspsych-video-button-response plugin¶
This plugin plays a video and records responses generated by button click. The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically when the subject responds, when the video file has finished playing, or if the subject has failed to respond within a fixed length of time. You can also prevent a button response from being made before the video has finished playing. The button itself can be customized using HTML formatting.
-Video files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the video stimulus, you will need to manually preload the videos. Also note that video preloading is disabled when the experiment is running as a file (i.e. opened directly in the browser, rather than through a server), in order to prevent CORS errors - see the section on Running Experiments for more information.
+Video files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the video stimulus, you will need to manually preload the videos. Also note that video preloading is disabled when the experiment is running as a file (i.e. opened directly in the browser, rather than through a server), in order to prevent CORS errors - see the section on Running Experiments for more information.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1600,7 +1600,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-video-keyboard-response/index.html b/6.3/plugins/jspsych-video-keyboard-response/index.html
index 8a3fd92c..d549922f 100755
--- a/6.3/plugins/jspsych-video-keyboard-response/index.html
+++ b/6.3/plugins/jspsych-video-keyboard-response/index.html
@@ -1482,9 +1482,9 @@
jspsych-video-keyboard-response plugin¶
This plugin plays a video file and records a keyboard response. The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically when the subject responds, when the video file has finished playing, or if the subject has failed to respond within a fixed length of time. You can also prevent a keyboard response from being recorded before the video has finished playing.
-Video files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the video stimulus, you will need to manually preload the videos. Also note that video preloading is disabled when the experiment is running as a file (i.e. opened directly in the browser, rather than through a server), in order to prevent CORS errors - see the section on Running Experiments for more information.
+Video files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the video stimulus, you will need to manually preload the videos. Also note that video preloading is disabled when the experiment is running as a file (i.e. opened directly in the browser, rather than through a server), in order to prevent CORS errors - see the section on Running Experiments for more information.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1582,7 +1582,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-video-slider-response/index.html b/6.3/plugins/jspsych-video-slider-response/index.html
index 2687c717..793601d1 100755
--- a/6.3/plugins/jspsych-video-slider-response/index.html
+++ b/6.3/plugins/jspsych-video-slider-response/index.html
@@ -1482,9 +1482,9 @@
jspsych-video-slider-response plugin¶
This plugin plays a video and allows the subject to respond by dragging a slider. The stimulus can be displayed until a response is given, or for a pre-determined amount of time. The trial can be ended automatically when the subject responds, when the video file has finished playing, or if the subject has failed to respond within a fixed length of time. You can also prevent the slider response from being made before the video has finished playing.
-Video files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the video stimulus, you will need to manually preload the videos. Also note that video preloading is disabled when the experiment is running as a file (i.e. opened directly in the browser, rather than through a server), in order to prevent CORS errors - see the section on Running Experiments for more information.
+Video files can be automatically preloaded by jsPsych using the preload
plugin. However, if you are using timeline variables or another dynamic method to specify the video stimulus, you will need to manually preload the videos. Also note that video preloading is disabled when the experiment is running as a file (i.e. opened directly in the browser, rather than through a server), in order to prevent CORS errors - see the section on Running Experiments for more information.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1624,7 +1624,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-visual-search-circle/index.html b/6.3/plugins/jspsych-visual-search-circle/index.html
index 32a92163..236698ac 100755
--- a/6.3/plugins/jspsych-visual-search-circle/index.html
+++ b/6.3/plugins/jspsych-visual-search-circle/index.html
@@ -1484,7 +1484,7 @@
This plugin presents a customizable visual-search task modelled after Wang, Cavanagh, & Green (1994). The subject indicates whether or not a target is present among a set of distractors. The stimuli are displayed in a circle, evenly-spaced, equidistant from a fixation point. Here is an example using normal and backward Ns:

Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1570,7 +1570,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-vsl-animate-occlusion/index.html b/6.3/plugins/jspsych-vsl-animate-occlusion/index.html
index 41a52cdb..44ac56e6 100755
--- a/6.3/plugins/jspsych-vsl-animate-occlusion/index.html
+++ b/6.3/plugins/jspsych-vsl-animate-occlusion/index.html
@@ -1500,7 +1500,7 @@
Dependency¶
This plugin requires the Snap.svg library, available at http://www.snapsvg.io. You must include the library in the <head>
section of your experiment page.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1562,7 +1562,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-vsl-grid-scene/index.html b/6.3/plugins/jspsych-vsl-grid-scene/index.html
index a20b8210..f29fdaeb 100755
--- a/6.3/plugins/jspsych-vsl-grid-scene/index.html
+++ b/6.3/plugins/jspsych-vsl-grid-scene/index.html
@@ -1510,7 +1510,7 @@
The VSL (visual statistical learning) grid scene plugin displays images arranged in a grid. This plugin can be used to replicate the experiments described in:
Fiser, J., & Aslin, R. N. (2001). Unsupervised statistical learning of higher-order spatial structures from visual scenes. Psychological Science, 12(6), 499-504.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1542,7 +1542,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
diff --git a/6.3/plugins/jspsych-webgazer-calibrate/index.html b/6.3/plugins/jspsych-webgazer-calibrate/index.html
index 28e2a430..e80e8554 100755
--- a/6.3/plugins/jspsych-webgazer-calibrate/index.html
+++ b/6.3/plugins/jspsych-webgazer-calibrate/index.html
@@ -1483,7 +1483,7 @@
jspsych-webgazer-calibrate¶
This plugin can be used to calibrate the WebGazer extension. For a narrative description of eye tracking with jsPsych, see the eye tracking overview.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1539,7 +1539,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
@@ -1558,7 +1558,7 @@
No data currently added by this plugin. Use the webgazer-validate plugin to measure the precision and accuracy of calibration.
Example¶
-Because the eye tracking plugins need to be used in conjunction with each other, please see the example on the eye tracking overview page for an integrated example.
+Because the eye tracking plugins need to be used in conjunction with each other, please see the example on the eye tracking overview page for an integrated example.
diff --git a/6.3/plugins/jspsych-webgazer-init-camera/index.html b/6.3/plugins/jspsych-webgazer-init-camera/index.html
index e9bea44c..0a33798f 100755
--- a/6.3/plugins/jspsych-webgazer-init-camera/index.html
+++ b/6.3/plugins/jspsych-webgazer-init-camera/index.html
@@ -1483,7 +1483,7 @@
jspsych-webgazer-init-camera¶
This plugin initializes the camera and helps the participant center their face in the camera view for using the the WebGazer extension. For a narrative description of eye tracking with jsPsych, see the eye tracking overview.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1509,7 +1509,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
@@ -1527,7 +1527,7 @@
Example¶
-Because the eye tracking plugins need to be used in conjunction with each other, please see the example on the eye tracking overview page for an integrated example.
+Because the eye tracking plugins need to be used in conjunction with each other, please see the example on the eye tracking overview page for an integrated example.
diff --git a/6.3/plugins/jspsych-webgazer-validate/index.html b/6.3/plugins/jspsych-webgazer-validate/index.html
index 966aa17f..8be1634b 100755
--- a/6.3/plugins/jspsych-webgazer-validate/index.html
+++ b/6.3/plugins/jspsych-webgazer-validate/index.html
@@ -1483,7 +1483,7 @@
jspsych-webgazer-validate¶
This plugin can be used to measure the accuracy and precision of gaze predictions made by the WebGazer extension. For a narrative description of eye tracking with jsPsych, see the eye tracking overview.
Parameters¶
-In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
+In addition to the parameters available in all plugins, this plugin accepts the following parameters. Parameters with a default value of undefined must be specified. Other parameters can be left unspecified if the default value is acceptable.
@@ -1545,7 +1545,7 @@
Data Generated¶
-In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
+In addition to the default data collected by all plugins, this plugin collects the following data for each trial.
@@ -1583,7 +1583,7 @@
Example¶
-Because the eye tracking plugins need to be used in conjunction with each other, please see the example on the eye tracking overview page for an integrated example.
+Because the eye tracking plugins need to be used in conjunction with each other, please see the example on the eye tracking overview page for an integrated example.
diff --git a/6.3/plugins/list-of-plugins/index.html b/6.3/plugins/list-of-plugins/index.html
index af6c8f1b..b07b8f9f 100755
--- a/6.3/plugins/list-of-plugins/index.html
+++ b/6.3/plugins/list-of-plugins/index.html
@@ -1408,7 +1408,7 @@
List of Plugins¶
-These are the plugins that are included in the jsPsych release. If you don't see a plugin that will work for your needs, you can post on GitHub Discussions to see if anyone else in the community has an unofficial plugin to share or to get help creating a new plugin. You can also view the documentation on creating a new plugin or watch a video tutorial on creating a new plugin.
+These are the plugins that are included in the jsPsych release. If you don't see a plugin that will work for your needs, you can post on GitHub Discussions to see if anyone else in the community has an unofficial plugin to share or to get help creating a new plugin. You can also view the documentation on creating a new plugin or watch a video tutorial on creating a new plugin.
diff --git a/6.3/sitemap.xml.gz b/6.3/sitemap.xml.gz
index 663422a0..ab0b8b8a 100755
Binary files a/6.3/sitemap.xml.gz and b/6.3/sitemap.xml.gz differ