Skip to content

Commit

Permalink
Update free-web-iat.md
Browse files Browse the repository at this point in the history
  • Loading branch information
baranan authored Nov 2, 2023
1 parent a48c55d commit 923fc49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/en/blog/tutorials/free-web-iat.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ Note that in the example, when we defined the stimulus words for the attribute c
We used more complicated code for the attribute stimuli (e.g., `word: global.posWords[6]`) because we randomly select the attribute words from a larger pool of words, as recommended by [Axt et al. (2021)](https://doi.org/10.3758/s13428-021-01592-8).
To change your code to build the IAT you need. If you’re using photos, put them in your own directory and change your IAT script to search for images there: base_url: {image:’YOUR URL GOES HERE’}.
If you’re using words rather than photos, you need to update the [media](https://minnojs.github.io/minno-time/0.5/time/API.html#media) object of the categories. For instance: {word: 'Tyrone'}.
To change your code to build the IAT you need. If you’re using photos, put them in your own directory and change your IAT script to search for images there: `base_url: {image:YOUR URL GOES HERE’}`.
If you’re using words rather than photos, you need to update the [media](https://minnojs.github.io/minno-time/0.5/time/API.html#media) object of the categories. For instance: `{word: 'Tyrone'}.`
If you want to update the attributes, see how the attributes are defined in the [extension script](https://cdn.jsdelivr.net/gh/baranan/minno-tasks@0.*/IAT/iat10.js) and override them by defining your own attributes in your IAT script.
Although our IAT script supports touch devices, the IAT does not detect automatically whether the participant is using a touch device (e.g., mobile). Therefore, if you want your participants to run the IAT on a mobile device or a tablet, you will need to create an IAT version specifically for those participants (in your script, set isTouch:true in the IAT parameters).
In the example study, we use Minno's internal detection at the beginning of the study, in the [manager file](https://github.com/baranan/minno-tasks/blob/master/docs/studies/datapipe.example.iat/mgr.js) in the following line:<br/>
Although our IAT script supports touch devices, the IAT does not detect automatically whether the participant is using a touch device (e.g., mobile). Therefore, if you want your participants to run the IAT on a mobile device or a tablet, it might be best to an IAT version specifically for those participants (in your script, set isTouch:true in the IAT parameters).
This is not what we have done in the example study. Rather, in the example study, we use Minno's internal detection at the beginning of the study, in the [manager file](https://github.com/baranan/minno-tasks/blob/master/docs/studies/datapipe.example.iat/mgr.js) in the following line:<br/>
`{ type: 'isTouch' }, //Use Minno's internal touch detection mechanism. `

Expand Down

0 comments on commit 923fc49

Please sign in to comment.