Update README.md

This commit is contained in:
kristiyip 2017-07-12 12:11:59 -04:00 committed by GitHub
parent 1106538689
commit dfd7994d5c

View File

@ -134,12 +134,10 @@ var debrief = {
.filter({stim_type: 'congruent'}).select('rt').mean());
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>"+
congruent_rt + "ms</strong>.</p>"+
"<p style='font-size:25px'>" +
"Your average response time for incongruent trials was <strong>"+
incongruent_rt + "ms</strong>.</p>";
return "<p>Your average response time for congruent trials"+
"was <strong>"+congruent_rt+"ms</strong>.</p>"+
"<p>Your average response time for incongruent trials was"+
"<strong>"incongruent_rt + "ms</strong>.</p>";
}};
var timeline = [];
timeline.push(test);