jsPsych/examples/fullscreen-mouse-bug.html
2016-12-09 21:25:56 -05:00

28 lines
482 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-text.js"></script>
<link rel="stylesheet" href="../css/jspsych.css"></link>
</head>
<script>
var block_1 = {
type: 'text',
text: 'This trial should display. Click to continue.',
choices: 'mouse'
}
jsPsych.init({
timeline: [block_1],
fullscreen: true,
on_finish: function() {
jsPsych.data.displayData();
}
});
</script>
</html>