Update README.md

This commit is contained in:
kristiyip 2017-07-12 12:04:40 -04:00 committed by GitHub
parent 669e909af5
commit 2b2c2c2973

View File

@ -105,7 +105,7 @@ This is an example of the image-keyboard-response plugin:
And for a slightly longer experiment example, here is a flanker experiment which uses the html-keyboard-response plugin:
<div display="flex">
<img src="https://user-images.githubusercontent.com/14092539/28126802-97b50d08-66f8-11e7-9a45-46561ab51a5f.gif" align="right" width=50% height=525/>
<img src="https://user-images.githubusercontent.com/14092539/28126802-97b50d08-66f8-11e7-9a45-46561ab51a5f.gif" align="right" width=50% height=550/>
<div markdown="3" style="width: 50%;">
<sub>
@ -137,10 +137,10 @@ var debrief = {
var incongruent_rt = Math.round(jsPsych.data.get()
.filter({stim_type: 'incongruent'}).select('rt').mean());
return "<p style='font-size:25px'>" +
"Your average response time for congruent trials was <strong>" +
"Your average response time for congruent trials was <strong>"+
congruent_rt + "ms</strong>.</p>"+
"<p style='font-size:25px'>" +
"Your average response time for incongruent trials was <strong>" +
"Your average response time for incongruent trials was <strong>"+
incongruent_rt + "ms</strong>.</p>";
}
};