Deployed c6a5691c to v7 with MkDocs 1.6.0 and mike 2.1.1

This commit is contained in:
docs-bot 2024-06-07 01:48:39 +00:00
parent b90e57e124
commit a524c8190f
11 changed files with 718 additions and 461 deletions

View File

@ -3075,8 +3075,8 @@
<span class="p">}</span>
</code></pre></div>
<h3 id="responding-to-keyboard-events">Responding to keyboard events<a class="headerlink" href="#responding-to-keyboard-events" title="Permanent link">&para;</a></h3>
<p>While the plugin framework allows you to set up any events that you would like to, including normal handling of <code>keyup</code> or <code>keydown</code> events, the <code>jsPsych.pluginAPI</code> module contains the <a href="../../reference/jspsych-pluginAPI/#jspsychpluginapigetkeyboardresponse"><code>getKeyboardResponse</code> function</a>, which implements some additional helpful functionality for key responses in an experiment.</p>
<p>Here's a basic example. See the <a href="../../reference/jspsych-pluginAPI/#jspsychpluginapigetkeyboardresponse"><code>getKeyboardResponse</code> docs</a> for additional examples.</p>
<p>While the plugin framework allows you to set up any events that you would like to, including normal handling of <code>keyup</code> or <code>keydown</code> events, the <code>jsPsych.pluginAPI</code> module contains the <a href="../../reference/jspsych-pluginAPI/#getkeyboardresponse"><code>getKeyboardResponse</code> function</a>, which implements some additional helpful functionality for key responses in an experiment.</p>
<p>Here's a basic example. See the <a href="../../reference/jspsych-pluginAPI/#getkeyboardresponse"><code>getKeyboardResponse</code> docs</a> for additional examples.</p>
<div class="highlight"><pre><span></span><code><span class="nx">trial</span><span class="p">(</span><span class="nx">display_element</span><span class="p">,</span><span class="w"> </span><span class="nx">trial</span><span class="p">){</span>
<span class="w"> </span><span class="c1">// show image</span>
<span class="w"> </span><span class="nx">display_element</span><span class="p">.</span><span class="nx">innerHTML</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="sb">`&lt;img src=&quot;</span><span class="si">${</span><span class="nx">trial</span><span class="p">.</span><span class="nx">image</span><span class="si">}</span><span class="sb">&quot;&gt;&lt;/img&gt;`</span><span class="p">;</span>

View File

@ -2972,7 +2972,7 @@
</code></pre></div>
<hr />
<h2 id="on_trial_finish">on_trial_finish<a class="headerlink" href="#on_trial_finish" title="Permanent link">&para;</a></h2>
<p>The <code>on_trial_finish</code> callback can be declared in the <code>initJsPsych</code> method. The callback will trigger at the end of every trial in the experiment, after the trial object's <a href="#onfinishtrial"><code>on_finish</code></a> callback has been run. The callback function will be passed a single argument, containing the data object from the trial. If you want a callback to trigger only for the end of certain trials, use the <a href="#onfinishtrial"><code>on_finish</code></a> callback on the trial object instead.</p>
<p>The <code>on_trial_finish</code> callback can be declared in the <code>initJsPsych</code> method. The callback will trigger at the end of every trial in the experiment, after the trial object's <a href="#on_finish-trial"><code>on_finish</code></a> callback has been run. The callback function will be passed a single argument, containing the data object from the trial. If you want a callback to trigger only for the end of certain trials, use the <a href="#on_finish-trial"><code>on_finish</code></a> callback on the trial object instead.</p>
<div class="highlight"><pre><span></span><code><span class="nx">initJsPsych</span><span class="p">({</span>
<span class="w"> </span><span class="nx">on_trial_finish</span><span class="o">:</span><span class="w"> </span><span class="kd">function</span><span class="p">(</span><span class="nx">data</span><span class="p">)</span><span class="w"> </span><span class="p">{</span>
<span class="w"> </span><span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="s1">&#39;A trial just ended.&#39;</span><span class="p">);</span>

View File

@ -2805,7 +2805,7 @@
<p>You can accomplish this in a couple different ways.</p>
<div class="admonition warning">
<p class="admonition-title">Warning</p>
<p>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 <code>call-function</code> plugin (<a href="../../plugins/call-function/#async-function-call">example</a>).</p>
<p>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 <code>call-function</code> plugin (<a href="../../plugins/call-function/#async-example">example</a>).</p>
</div>
<h3 id="participant-clicks-a-link">Participant clicks a link<a class="headerlink" href="#participant-clicks-a-link" title="Permanent link">&para;</a></h3>
<p>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 <code>html-keyboard-response</code> plugin can be used to display text that includes a link. This could go on a debriefing page.</p>

View File

@ -2903,6 +2903,7 @@
<span class="p">}</span>
</code></pre></div></p>
</details>
<p><a name="async-example"></a></p>
<details class="example" open="open">
<summary>Async function call: simulate waiting for an event to finish</summary>
<div class="tabbed-set tabbed-alternate" data-tabs="4:2"><input checked="checked" id="__tabbed_4_1" name="__tabbed_4" type="radio" /><input id="__tabbed_4_2" name="__tabbed_4" type="radio" /><div class="tabbed-labels"><label for="__tabbed_4_1">Code</label><label for="__tabbed_4_2">Demo</label></div>

View File

@ -2887,7 +2887,7 @@
</tbody>
</table>
<h2 id="data-generated">Data Generated<a class="headerlink" href="#data-generated" title="Permanent link">&para;</a></h2>
<p>In addition to the <a href="../../overview/plugins/#datacollectedbyplugins">default data collected by all plugins</a>, this plugin collects the following data for each trial.</p>
<p>In addition to the <a href="../../overview/plugins/#data-collected-by-all-plugins">default data collected by all plugins</a>, this plugin collects the following data for each trial.</p>
<p><em>Note: The deg data are <strong>only</strong> returned if viewing distance is estimated with the blindspot method (px2deg, win_height_deg, win_width_deg, item_width_deg).</em></p>
<table>
<thead>

View File

@ -4501,7 +4501,7 @@ on this page.</p>
<h3 id="return-value_9">Return value<a class="headerlink" href="#return-value_9" title="Permanent link">&para;</a></h3>
<p>Returns nothing.</p>
<h3 id="description_9">Description<a class="headerlink" href="#description_9" title="Permanent link">&para;</a></h3>
<p>This method is used by <code>jsPsych.finishTrial</code> for writing data. You should probably not use it to add data. Instead use <a href="#addProperties">jsPsych.data.addProperties</a>.</p>
<p>This method is used by <code>jsPsych.finishTrial</code> for writing data. You should probably not use it to add data. Instead use <a href="#jspsychdataaddproperties">jsPsych.data.addProperties</a>.</p>
<h3 id="example_7">Example<a class="headerlink" href="#example_7" title="Permanent link">&para;</a></h3>
<div class="highlight"><pre><span></span><code><span class="c1">// don&#39;t use this! data should only be written once per trial. use jsPsych.finishTrial to save data.</span>

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -2,487 +2,487 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.jspsych.org/v7/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/about/about/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/about/license/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/developers/configuration/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/developers/contributing/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/developers/documentation/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/developers/extension-development/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/developers/plugin-development/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/extensions/list-of-extensions/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/extensions/mouse-tracking/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/extensions/record-video/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/extensions/webgazer/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/browser-device-support/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/building-surveys/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/data/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/dynamic-parameters/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/events/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/exclude-browser/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/experiment-options/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/extensions/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/eye-tracking/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/fullscreen/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/media-preloading/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/mturk/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/plugins/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/progress-bar/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/prolific/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/record-browser-interactions/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/running-experiments/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/simulation/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/style/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/timeline/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/overview/timing-accuracy/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/animation/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/audio-button-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/audio-keyboard-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/audio-slider-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/browser-check/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/call-function/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/canvas-button-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/canvas-keyboard-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/canvas-slider-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/categorize-animation/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/categorize-html/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/categorize-image/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/cloze/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/external-html/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/free-sort/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/fullscreen/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/html-audio-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/html-button-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/html-keyboard-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/html-slider-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/html-video-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/iat-html/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/iat-image/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/image-button-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/image-keyboard-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/image-slider-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/initialize-camera/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/initialize-microphone/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/instructions/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/list-of-plugins/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/maxdiff/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/mirror-camera/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/preload/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/reconstruction/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/resize/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/same-different-html/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/same-different-image/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/serial-reaction-time-mouse/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/serial-reaction-time/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/sketchpad/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/survey-html-form/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/survey-likert/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/survey-multi-choice/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/survey-multi-select/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/survey-text/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/survey/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/video-button-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/video-keyboard-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/video-slider-response/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/virtual-chinrest/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/visual-search-circle/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/webgazer-calibrate/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/webgazer-init-camera/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/plugins/webgazer-validate/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/reference/jspsych-data/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/reference/jspsych-pluginAPI/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/reference/jspsych-randomization/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/reference/jspsych-turk/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/reference/jspsych/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/support/migration-v7/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/support/support/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/tutorials/hello-world/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/tutorials/rt-task/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://www.jspsych.org/v7/tutorials/video-tutorials/</loc>
<lastmod>2024-06-06</lastmod>
<lastmod>2024-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>

Binary file not shown.

View File

@ -8,11 +8,11 @@
"version": "v7",
"title": "v7",
"aliases": [
"7.3",
"7.1",
"7.0",
"latest",
"7.2",
"latest"
"7.3",
"7.1"
]
}
]