Skip to content

Commit

Permalink
fixed timing bug in htlm-plugin
Browse files Browse the repository at this point in the history
It was just a typo.
  • Loading branch information
eweitnauer committed Oct 21, 2014
1 parent 039eef6 commit 8a0bdc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/jspsych-html.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ documentation: https://github.com/jodeleeuw/jsPsych/wiki/jspsych-html
display_element.empty();
display_element.show();
jsPsych.finishTrial();
}, trial.timing);
}, trial.timing_post_trial);
}
else {
display_element.empty();
Expand Down

1 comment on commit 8a0bdc9

@jodeleeuw
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is why the next big push will be code for testing...

Please sign in to comment.